if getgenv().SkidHubGUI then getgenv().SkidHubGUI:Destroy() getgenv().SkidHubGUI = nil end local Players = game:GetService("Players") local CoreGui = game:GetService("CoreGui") local LocalPlayer = Players.LocalPlayer local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "SkidHub" ScreenGui.Parent = CoreGui getgenv().SkidHubGUI = ScreenGui local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 200, 0, 100) Frame.Position = UDim2.new(0.5, -100, 0.5, -50) Frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) Frame.BorderSizePixel = 0 Frame.Active = true Frame.Draggable = true Frame.Parent = ScreenGui local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 30) Title.BackgroundColor3 = Color3.fromRGB(35, 35, 35) Title.Text = "SkidHub" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 18 Title.Font = Enum.Font.SourceSansBold Title.Parent = Frame local Button = Instance.new("TextButton") Button.Size = UDim2.new(1, -20, 0, 40) Button.Position = UDim2.new(0, 10, 0, 45) Button.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Button.Text = "Inf SP: OFF" Button.TextColor3 = Color3.fromRGB(255, 255, 255) Button.TextSize = 16 Button.Font = Enum.Font.SourceSansBold Button.Parent = Frame local Enabled = false local Connection local function Toggle() Enabled = not Enabled Button.Text = Enabled and "Inf SP: ON" or "Inf SP: OFF" if Enabled then Connection = game:GetService("RunService").Stepped:Connect(function() local args = { { "Magic Damage", -999999999999999999999999999999999999999999999999 -- you can change the amount if you like, this just gives pratically infinite } } workspace:WaitForChild("__THINGS"):WaitForChild("__REMOTES"):WaitForChild("update_stats"):FireServer(unpack(args)) end) else if Connection then Connection:Disconnect() Connection = nil end end end Button.MouseButton1Click:Connect(Toggle)