Categories > Coding > Lua >
How to make a roblox simulator game script using simple spy
Posted
so first you need simple spy : simple spy
now you need to do your function in your simulator game like click,rebirth,move around etc
now the function you did (click rebirth move etc) should pop up in remote spy Remote Spy Function Example
if it don't work then try the other ones
copy that code and go to your prefered ide like vsc vs or roblox studio
now type the following
_G.autoTap = true; -- global variable
while _G.autoTap == true do -- while loop
local args = {
[1] = {
["IsRunning"] = true,
["CFrame"] = CFrame.new(-10738.2158203125, 114, -5904.830078125) * CFrame.Angles(-0, 1.475164532661438, -0)
}
}
game:GetService("ReplicatedStorage").Knit.Services.CharacterService.RE.UpdateCharacterState:FireServer(unpack(args)) -- this should be your script from the remote spy like your rebirth click etc
wait() -- wait means how many times it fires this one fires 30 times which should be enough
end
showcase : showcase
you can also repeat this for many other functions it does not just have to be auto click it can be auto rebirth auto pets etc
Replied
some tips use getgenv() and there is no use for ; example getgenv().autofarmtap = true
use turtle spy over simple spy as it does not spam the remotes and is a little neater
use a spawn(function() because getgenv() and _G can not run multiple at a time same with while true on its own
use task.wait() over wait() (it fires much faster)
Cancel
Post
Replied
thank you I was just doing it for the new people it was more beginner than advance but thank you for saying this it was much appreacited im sorry again if it was not a good tutorial im still new to all this haha :)
Cancel
Post
Replied
its fine you did good im just saying for future and for people who want to as they are a bit more neat
Cancel
Post
Replied
Thank you, I was only doing it for new people, it was more beginning than advanced, but thank you for mentioning this, it was very appreciated.
Cancel
Post
Love you to the moon and back
Greenmatchuss@gmail.com geometry dash subzero
Replied
cool simple lesson
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post