Categories > Exploiting > Scripts >
[REQ] basic money script for a small game that I'm pretty sure is abandoned
Posted
the game is https://www.roblox.com/games/10102605953/Luck-simulator-2 its a small game that basically no one plays and i was wandering if someone could create for me a basic money script. if possible i would also like a rebirth and gem script and maybe also an auto farm but knowing how difficult that is im okay with just a basic money script. please and thank you
Replied
getgenv().dimension1 = true
getgenv().dimension2 = true
spawn(function()
while getgenv().dimension1 == true do
local playerHead = game.Players.LocalPlayer.Character.Head
for i,v in pairs(game:GetService("Workspace").D1:GetDescendants()) do
if v.Name == "TouchInterest" then
firetouchinterest(playerHead, v.Parent, 0)
task.wait()
firetouchinterest(playerHead, v.Parent, 1)
break;
end
end
end
end)
spawn(function()
while getgenv().dimension2 == true do
local playerHead = game.Players.LocalPlayer.Character.Head
for i,v in pairs(game:GetService("Workspace").D2:GetDescendants()) do
if v.Name == "TouchInterest" then
firetouchinterest(playerHead, v.Parent, 0)
task.wait()
firetouchinterest(playerHead, v.Parent, 1)
break;
end
end
end
end)
clicks everything in every dimension on loop
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post