Advertisement
BINO2002

Untitled

Aug 28th, 2019
528
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. --f3 to turn on
  2. --f4 to turn on and off Rebirth and Resize
  3. --backspace to stop
  4. --Rebirth, Resize, and carrot farm
  5. --game: https://www.roblox.com/games/1502601752/Fixed-Rabbit-Simulator-2#
  6. --DON'T hit f3 more than 3 times (it may kick you)
  7. --Credit: brianops1
  8. RR = true
  9. function Rr()
  10. if RR == true then
  11. RR = false
  12. else if RR == false then
  13. RR = true
  14. end
  15. end
  16. end
  17.  
  18. function code()
  19. for i=1,3 do
  20. wait(.05)
  21. game.Players.LocalPlayer.Backpack.Carrot.E:FireServer()
  22. if i == 2 and RR == true then
  23. game.ReplicatedStorage.ResetSize:FireServer()
  24. game.ReplicatedStorage.RebirthMe:FireServer()
  25. end
  26. end
  27. end
  28.  
  29.  
  30. on = 1
  31. MyMouse = game.Players.localPlayer:GetMouse()
  32. MyMouse.KeyDown:connect(function(key)
  33. if (key:byte() == 28) then
  34. on = 1
  35. wait(1)
  36. while on == 1 do
  37. game:GetService('RunService').Stepped:wait(0)
  38. code()
  39. end
  40. end
  41. end)
  42. MyMouse = game.Players.localPlayer:GetMouse()
  43. MyMouse.KeyDown:connect(function(key)
  44. if (key:byte() == 29) then
  45. Rr()
  46. end
  47. end)
  48. MyMouse.KeyDown:connect(function(key)
  49. if (key:byte() == 8) then
  50. on = 0
  51. end
  52. end)
  53. --f3 to turn on
  54. --f4 to turn on and off Rebirth and Resize
  55. --DON'T hit f3 more than 3 times (it may kick you)
  56. --backspace to stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement