local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local LocalPlayer = Players.LocalPlayer if not ReplicatedStorage:FindFirstChild("WhyRemote") then local remote = Instance.new("RemoteEvent") remote.Name = "WhyRemote" remote.Parent = ReplicatedStorage end local screengui = Instance.new("ScreenGui", LocalPlayer:WaitForChild("PlayerGui")) screengui.Name = "ServersideDoWhy" screengui.ResetOnSpawn = false local frame = Instance.new("Frame", screengui) frame.Size = UDim2.new(0, 400, 0, 300) frame.Position = UDim2.new(0.3, 0, 0.3, 0) frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true local title = Instance.new("TextLabel", frame) title.Text = "SERVERSIDE DO WHY" title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundColor3 = Color3.fromRGB(30, 30, 30) title.TextColor3 = Color3.new(1, 1, 1) title.Font = Enum.Font.GothamBlack title.TextSize = 20 local box = Instance.new("TextBox", frame) box.Size = UDim2.new(1, -20, 0, 160) box.Position = UDim2.new(0, 10, 0, 50) box.Text = "-- Digite aqui seu script ou require" box.ClearTextOnFocus = false box.MultiLine = true box.TextWrapped = true box.TextXAlignment = Enum.TextXAlignment.Left box.TextYAlignment = Enum.TextYAlignment.Top box.BackgroundColor3 = Color3.fromRGB(40, 40, 40) box.TextColor3 = Color3.new(1, 1, 1) box.Font = Enum.Font.Code box.TextSize = 16 local exec = Instance.new("TextButton", frame) exec.Text = "EXECUTAR" exec.Size = UDim2.new(0.48, -5, 0, 40) exec.Position = UDim2.new(0, 10, 1, -50) exec.BackgroundColor3 = Color3.fromRGB(0, 200, 0) exec.TextColor3 = Color3.new(1, 1, 1) exec.Font = Enum.Font.GothamBold exec.TextSize = 16 local clear = Instance.new("TextButton", frame) clear.Text = "LIMPAR" clear.Size = UDim2.new(0.48, -5, 0, 40) clear.Position = UDim2.new(0.52, 0, 1, -50) clear.BackgroundColor3 = Color3.fromRGB(200, 0, 0) clear.TextColor3 = Color3.new(1, 1, 1) clear.Font = Enum.Font.GothamBold clear.TextSize = 16 exec.MouseButton1Click:Connect(function() local code = box.Text if code and code ~= "" then ReplicatedStorage:FindFirstChild("WhyRemote"):FireServer(code) end end) clear.MouseButton1Click:Connect(function() box.Text = "" end)