Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. --Made by OpTic Wisdom/LikeATrollFace
  2. --THIS SCRIPT IS FOR LIKEATROLLFACE'S VIDEO ONLY
  3. stronk = false
  4. stronk2 = false
  5.  
  6. function onKeyPress(inputObject, gameProcessedEvent)
  7. if inputObject.KeyCode == Enum.KeyCode.Q then
  8. if stronk == false then
  9. stronk = true
  10. elseif
  11. stronk == true then
  12. stronk = false
  13. end
  14. end
  15. end
  16.  
  17. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  18.  
  19. function onKeyPress(inputObject, gameProcessedEvent)
  20. if inputObject.KeyCode == Enum.KeyCode.E then
  21. if stronk2 == false then
  22. stronk2 = true
  23. elseif
  24. stronk2 == true then
  25. stronk2 = false
  26. end
  27. end
  28. end
  29.  
  30. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  31.  
  32. while true do
  33. wait()
  34. if stronk == true then
  35. game.ReplicatedStorage.addStrength:FireServer(game.Players.LocalPlayer.Character["Weight"].Handle, 1)
  36. elseif stronk2 == true then
  37. game.ReplicatedStorage.addStrength:FireServer(game.Players.LocalPlayer.Character["Double Weight"].Handle, 5)
  38. end
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement