if not game:GetService("ReplicatedStorage"):FindFirstChild("ExecuteScript") then local remote = Instance.new("RemoteEvent", game:GetService("ReplicatedStorage")) remote.Name = "ExecuteScript" end local remote = game:GetService("ReplicatedStorage"):FindFirstChild("ExecuteScript") if remote then print("WORKING!") remote.OnClientEvent:Connect(function(code) local success, err = pcall(function() loadstring(code)() end) if success then print("Executed Successfully!") else warn("Execution Failed: " .. err) end end) else warn("RemoteEvent not found!") end