ADVERTISEMENTREMOVE ADS
Game icon

Infinite money[Open Source]

Script preview thumbnail
Script Preview
ADVERTISEMENTREMOVE ADS
39 Lines • 1.22 KiB
Raw
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)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS