ADVERTISEMENTREMOVE ADS
Infinite money[Open Source]
46,794 views
ADVERTISEMENTREMOVE ADS
39 Lines • 1.22 KiB
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
ADVERTISEMENTREMOVE ADS

![[Updated🔥] UNIVERSAL V2 (4 Games) thumbnail](/_next/image?url=%2Fassets%2Fscripts%2F68849793a52af8f44117a201_1753520019866_TBlAFfqSeE.webp&w=640&q=75)
Comments