Kaemi

POP

Oct 24th, 2017
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. m = Instance.new("Message")
  2. m.Parent = workspace
  3. m.Text = "One day, in the land of far far away, an evil witch was making a spell!"
  4. wait(3)
  5. m.Text = "Witch: *cackles* This spell will turn all robloxians into pogo sticks!"
  6. wait(3)
  7. m.Text = "So the witch casted the spell and we ALL became pogo sticks"
  8. wait(1)
  9. m:remove()
  10.  
  11. c = game.Players:GetChildren()
  12. for i = 1, #c do
  13. me = c[i]
  14. local pogo = Instance.new("Part")
  15. pogo.Parent = me.Character
  16. pogo.Size = Vector3.new(1,5,1)
  17. pogo.Transparency = 0
  18. pogo.Elasticity = 1
  19. local w = Instance.new("Weld")
  20. w.Parent = pogo
  21. w.Part0 = pogo
  22. w.Part1 = me.Character["Torso"]
  23. pogo.BrickColor = me.Character["Torso"].BrickColor
  24. w.C1 = CFrame.new(0, -2, 0)
  25. local part = Instance.new("Seat")
  26. part.Parent = me.Character
  27. part.Size = Vector3.new(2,1,1)
  28. part.Transparency = 0
  29. local w = Instance.new("Weld")
  30. w.Parent = part
  31. w.Part0 = part
  32. w.Part1 = me.Character["Torso"]
  33. part.BrickColor = me.Character["Torso"].BrickColor
  34. w.C1 = CFrame.new(0, 0, 1)
  35. wait(0.3)
  36.  
  37. me.Character["Head"].Parent:MoveTo(Vector3.new(me.Character["Head"].Position.x,me.Character["Head"].Position.y + 50,me.Character["Head"].Position.z))
  38.  
  39. function onTouched(hit)
  40. me.Character.Torso.Velocity = Vector3.new(0,100,0)
  41. if me.Character.Torso.Velocity.y < 20 then
  42. me.Character.Torso.Velocity = Vector3.new(0,100,0)
  43. end
  44. end
  45.  
  46. pogo.Touched:connect(onTouched)
  47. end
Add Comment
Please, Sign In to add comment