Advertisement
memberhero

script

Jan 11th, 2018
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. --GOTTA GO FAST/RUNNING IN THE 90S script by basstracker1970
  2. --Warning
  3. ---You May Be Deaf
  4. --After Running This
  5. --Script...
  6. --Press Z To Explode Your Self
  7. --Also Deaf Warning
  8. --On Z Move
  9. localplr = game.Players.LocalPlayer
  10. char = localplr.Character
  11. torso = char.Torso
  12. mouse = localplr:GetMouse()
  13. wait(1)
  14. char.Humanoid.WalkSpeed = 80
  15. sound = Instance.new("Sound",char)
  16. sound.SoundId = "rbxassetid://294997736"
  17. sound:Play()
  18. RIPEARS = Instance.new("DistortionSoundEffect")
  19. RIPEARS.Level = "75"
  20. RIPEARS.Parent = sound
  21. mouse.KeyDown:connect(function(key)
  22. if key == "z" then
  23. sound:Stop()
  24. sound2 = Instance.new("Sound",char.Torso)
  25. sound2.SoundId = "rbxassetid://633129949"
  26. sound2.Volume = "5"
  27. sound2:Play()
  28. RIPEARS2 = Instance.new("DistortionSoundEffect")
  29. RIPEARS2.Level = "75"
  30. RIPEARS2.Parent = sound2
  31. explode = Instance.new("Explosion",torso)
  32. explode.BlastRadius = "9999999"
  33. explode.Position = torso.Position
  34. end
  35. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement