Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- AddSpeed :
- Code:
- _G.toggle = true --true ON | false OFF
- while _G.toggle do
- wait()
- local Event = game:GetService("ReplicatedStorage").Events.AddSpeed
- Event:FireServer()
- end
- AutoFinish :
- Code:
- _G.toggle = false --true ON | false OFF
- while _G.toggle do
- wait()
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame=
- workspace.RaceTrack["RaceFinishLine"].CFrame
- end
- AutoRebirth :
- Code:
- _G.toggle = true --true ON | false OFF
- while _G.toggle do
- wait()
- local Event = game:GetService("ReplicatedStorage").Events.Rebirth
- Event:FireServer()
- end
- Change Pets - Do not Change "1" Only Change "rabbit" to the animal you want! :
- Code:
- local A_1 = 1
- local A_2 = "rabbit"
- local Event = game:GetService("ReplicatedStorage").PetEvent
- Event:FireServer(A_1, A_2)
- Change Trail - Do Not Change "0" Only Change "GreyTrail" to the trail you want! :
- Code:
- local A_1 = 0
- local A_2 = "GreyTrail"
- local Event = game:GetService("ReplicatedStorage").Events.EquipTrail
- Event:FireServer(A_1, A_2)
- Trail List - Some Might not work! :
- Code:
- GreyTrail
- BlueTrail
- GreenTrail
- RedTrail
- YellowTrail
- PurpleTrail
- OrangeTrail
- BlackTrail
- BlackWhiteTrail
- RedBlueTrail
- RainbowTrail
- Pet List - Some Might not work! :
- Code:
- rabbit
- penguin
- duck
- eyeball
- unicorn
- bat
- ghost
- raptor
- doge
- dragon
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement