Advertisement
Gomlsauresrex

LOL

Mar 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. local it=Instance
  2. local player=game.Players.LocalPlayer
  3. local c=it.new(
  4. "Part",
  5. workspace
  6. )
  7. local weld=function(a, b)
  8. local it=Instance
  9. local weld=it.new(
  10. "Weld"
  11. )
  12. weld.Part0 = a
  13. weld.Part1 = b
  14. weld.Parent = a
  15. weld.C0 = CFrame.new(0, 0, 1)
  16. end
  17.  
  18. repeat wait() until player.Character
  19. weld(
  20. player.Character:WaitForChild("Torso"),
  21. c
  22. )
  23. wait(5)
  24. local pointlight=it.new(
  25. "PointLight",
  26. c
  27. )
  28. pointlight.Color=Color3.new(255/255, 0/255, 0/255)
  29. for i=5,0,-1 do
  30. pointlight.Enabled=true
  31. wait(1)
  32. pointlight.Enabled=false
  33. wait(1)
  34. end
  35. local explosion=Instance.new("Explosion", c)
  36. explosion.Position=c.Position
  37. local sound=it.new(
  38. "Sound",
  39. workspace
  40. )
  41. sound.SoundId="rbxassetid://11984351"
  42. sound:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement