Advertisement
cortesjoren

Dashing Simulator scipt baby!!

Jan 12th, 2019
2,296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. AddSpeed :
  2. Code:
  3. _G.toggle = true --true ON | false OFF
  4. while _G.toggle do
  5. wait()
  6. local Event = game:GetService("ReplicatedStorage").Events.AddSpeed
  7. Event:FireServer()
  8. end
  9.  
  10. AutoFinish :
  11. Code:
  12. _G.toggle = false --true ON | false OFF
  13. while _G.toggle do
  14. wait()
  15. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame=
  16. workspace.RaceTrack["RaceFinishLine"].CFrame
  17. end
  18.  
  19. AutoRebirth :
  20. Code:
  21. _G.toggle = true --true ON | false OFF
  22. while _G.toggle do
  23. wait()
  24. local Event = game:GetService("ReplicatedStorage").Events.Rebirth
  25. Event:FireServer()
  26. end
  27.  
  28. Change Pets - Do not Change "1" Only Change "rabbit" to the animal you want! :
  29. Code:
  30. local A_1 = 1
  31. local A_2 = "rabbit"
  32. local Event = game:GetService("ReplicatedStorage").PetEvent
  33. Event:FireServer(A_1, A_2)
  34.  
  35. Change Trail - Do Not Change "0" Only Change "GreyTrail" to the trail you want! :
  36. Code:
  37. local A_1 = 0
  38. local A_2 = "GreyTrail"
  39. local Event = game:GetService("ReplicatedStorage").Events.EquipTrail
  40. Event:FireServer(A_1, A_2)
  41.  
  42. Trail List - Some Might not work! :
  43.  
  44. Code:
  45. GreyTrail
  46.  
  47. BlueTrail
  48.  
  49. GreenTrail
  50.  
  51. RedTrail
  52.  
  53. YellowTrail
  54.  
  55. PurpleTrail
  56.  
  57. OrangeTrail
  58.  
  59. BlackTrail
  60.  
  61. BlackWhiteTrail
  62.  
  63. RedBlueTrail
  64.  
  65. RainbowTrail
  66.  
  67. Pet List - Some Might not work! :
  68.  
  69. Code:
  70. rabbit
  71.  
  72. penguin
  73.  
  74. duck
  75.  
  76. eyeball
  77.  
  78. unicorn
  79.  
  80. bat
  81.  
  82. ghost
  83.  
  84. raptor
  85.  
  86. doge
  87.  
  88. dragon
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement