local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local ToggleButton = Instance.new("TextButton") local ExecuteButton = Instance.new("TextButton") local ClearButton = Instance.new("TextButton") local IYButton = Instance.new("TextButton") local ScriptBox = Instance.new("TextBox") -- GUI Parent ScreenGui.Parent = game:GetService("CoreGui") ScreenGui.ResetOnSpawn = false -- Main GUI (Lebih Lebar) MainFrame.Size = UDim2.new(0.7, 0, 0.5, 0) -- Lebih lebar dari sebelumnya MainFrame.Position = UDim2.new(0.15, 0, 0.25, 0) MainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) MainFrame.BorderSizePixel = 3 MainFrame.Parent = ScreenGui MainFrame.Active = true MainFrame.Draggable = true -- RGB Border Effect game:GetService("RunService").RenderStepped:Connect(function() local r = math.sin(tick() * 2) * 127 + 128 local g = math.sin(tick() * 2 + 2) * 127 + 128 local b = math.sin(tick() * 2 + 4) * 127 + 128 MainFrame.BorderColor3 = Color3.fromRGB(r, g, b) end) -- Toggle Button (Hanya Teks) ToggleButton.Size = UDim2.new(0, 50, 0, 50) ToggleButton.Position = UDim2.new(0.05, 0, 0.05, 0) ToggleButton.Text = "🌐" ToggleButton.TextSize = 30 ToggleButton.BackgroundTransparency = 1 -- Menghapus background persegi ToggleButton.Parent = ScreenGui ToggleButton.Active = true ToggleButton.Draggable = true local isGuiVisible = true ToggleButton.MouseButton1Click:Connect(function() isGuiVisible = not isGuiVisible MainFrame.Visible = isGuiVisible ToggleButton.Rotation = 0 -- Animasi berputar for i = 1, 10 do ToggleButton.Rotation = ToggleButton.Rotation + 36 wait(0.05) end end) -- ScriptBox ScriptBox.Size = UDim2.new(0.9, 0, 0.5, 0) ScriptBox.Position = UDim2.new(0.05, 0, 0.1, 0) ScriptBox.BackgroundColor3 = Color3.fromRGB(30, 30, 30) ScriptBox.TextColor3 = Color3.fromRGB(0, 255, 0) ScriptBox.TextWrapped = true ScriptBox.MultiLine = true ScriptBox.Text = "EXE BY RENZZ" ScriptBox.Parent = MainFrame -- Execute Button ExecuteButton.Size = UDim2.new(0.2, 0, 0.1, 0) ExecuteButton.Position = UDim2.new(0.1, 0, 0.7, 0) ExecuteButton.Text = "Execute" ExecuteButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) ExecuteButton.Parent = MainFrame ExecuteButton.MouseButton1Click:Connect(function() local scriptToExecute = ScriptBox.Text local success, err = pcall(function() loadstring(scriptToExecute)() end) if not success then warn("Execution Error: " .. err) end end) -- Clear Button ClearButton.Size = UDim2.new(0.2, 0, 0.1, 0) ClearButton.Position = UDim2.new(0.4, 0, 0.7, 0) ClearButton.Text = "Clear" ClearButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) ClearButton.Parent = MainFrame ClearButton.MouseButton1Click:Connect(function() ScriptBox.Text = "" end) -- IY Button IYButton.Size = UDim2.new(0.2, 0, 0.1, 0) IYButton.Position = UDim2.new(0.7, 0, 0.7, 0) IYButton.Text = "IY" IYButton.BackgroundColor3 = Color3.fromRGB(128, 128, 128) IYButton.Parent = MainFrame IYButton.MouseButton1Click:Connect(function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end)