Categories > Coding > Lua >

How to make a roblox simulator game script using simple spy

Posts: 2

Threads: 1

Joined: Dec, 2022

Reputation: 0

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

  • 0

Posts: 14

Threads: 0

Joined: Dec, 2022

Reputation: 0

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)

  • 1

Posts: 2

Threads: 1

Joined: Dec, 2022

Reputation: 0

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 :)

  • 0

Posts: 14

Threads: 0

Joined: Dec, 2022

Reputation: 0

Replied

its fine you did good im just saying for future and for people who want to as they are a bit more neat

  • 0

Posts: 1

Threads: 0

Joined: Dec, 2022

Reputation: 0

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.

  • 0

Love you to the moon and back

Greenmatchuss@gmail.com geometry dash subzero

Posts: 11

Threads: 1

Joined: Oct, 2022

Reputation: 0

Replied

cool simple lesson

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )