local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Turtle-Brand/Turtle-Lib/main/source.lua"))() local window = library:Window("Made by Mesohic") local toggleActive = false local connection window:Toggle("Infinite Money", false, function(state) toggleActive = state if toggleActive then connection = game:GetService("RunService").Heartbeat:Connect(function() game.ReplicatedStorage.Spin_Remotes.QuintoPremio:FireServer() end) else if connection then connection:Disconnect() connection = nil end end end) window:Button("Wear Outfit", function() game.ReplicatedStorage.Random_Remotes.Wear:FireServer() end) window:Slider("Speed", 16, 100, 16, function(value) local char = game.Players.LocalPlayer.Character if char and char:FindFirstChildWhichIsA("Humanoid") then char:FindFirstChildWhichIsA("Humanoid").WalkSpeed = value end end) window:Slider("Jump Power", 50, 150, 50, function(value) local char = game.Players.LocalPlayer.Character if char and char:FindFirstChildWhichIsA("Humanoid") then char:FindFirstChildWhichIsA("Humanoid").JumpPower = value end end)