Advertisement
Santeeisweird9

heaven script

Sep 21st, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. local p = game.Players:GetPlayers() -- don't mess with plz
  2. local e = math.random(1,#p) -- keep plz or you bronk scripp
  3.  
  4. local s = Instance.new("Sound", workspace) -- for sound
  5.  
  6. local id = 142120248 -- change to ur id
  7. local volume = 1 -- your volume (10 is like your ears explode)
  8. local pitch = 1 -- pitch
  9. local initialWait = 5 -- how long to wait before pranked
  10.  
  11. local h = Instance.new("Hint", workspace) -- message thingy
  12.  
  13. -- everything else is script don't touchy unless you know what to do smh
  14.  
  15. s.SoundId = "http://www.roblox.com/asset/?id="..id
  16. s.Volume = volume
  17. s.Pitch = pitch
  18. s:Play()
  19.  
  20. h.Text = p[e].Name.." is going to heaven!!! omg!!!"
  21.  
  22. workspace[p[e].Name]:WaitForChild("Humanoid").HipHeight = 999
  23. wait(initialWait)
  24. workspace[p[e].Name]:WaitForChild("Humanoid").HipHeight = 0
  25. s:Stop()
  26.  
  27. h.Text = "haha get pranked xdxdxd"
  28. wait(5)
  29. h:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement