RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me a hacker gui wich lets me hack the game"
-- local hackerGui = Instance.new("ScreenGui") hackerGui.Parent = game.Players.LocalPlayer.PlayerGui local frame = Instance.new("Frame") frame.Parent = hackerGui frame.Position = UDim2.new(0.5, -200, 0.5, -200) frame.Size = UDim2.new(0, 400, 0, 400) local title = Instance.new("TextLabel") title.Parent = frame title.Position = UDim2.new(0, 0, 0, 0) title.Size = UDim2.new(1, 0, 0, 50) title.Text = "Hacker GUI" title.TextSize = 30 title.Font = "SourceSansBold" title.TextWrapped = true title.TextXAlignment = "Center" local button1 = Instance.new("TextButton") button1.Parent = frame button1.Position = UDim2.new(0, 0, 0, 50) button1.Size = UDim2.new(1, 0, 0, 50) button1.Text = "Change Gravity" button1.TextSize = 20 button1.Font = "SourceSans" button1.MouseButton1Click:Connect(function() game.Workspace.Gravity = 50 end) local button2 = Instance.new("TextButton") button2.Parent = frame button2.Position = UDim2.new(0, 0, 0, 100) button2.Size = UDim2.new(1, 0, 0, 50) button2.Text = "Fly Mode" button2.TextSize = 20 button2.Font = "SourceSans" button2.MouseButton1Click:Connect(function() game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true end) local button3 = Instance.new("TextButton") button3.Parent = frame button3.Position = UDim2.new(0, 0, 0, 150) button3.Size = UDim2.new(1, 0, 0, 50) button3.Text = "God Mode" button3.TextSize = 20 button3.Font = "SourceSans" button3.MouseButton1Click:Connect(function() game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge end)