Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. local player=game.Players.LocalPlayer
  2. local RbxUtility=LoadLibrary("RbxUtility")
  3. local create=RbxUtility.Create
  4.  
  5. local weld=function(a, b)
  6. local weld=Instance.new("Weld")
  7. weld.Parent = a
  8. weld.Part0 = a
  9. weld.Part1= b
  10. weld.C0=CFrame.new(0, 0, 1.5)
  11. end
  12.  
  13. local part=Instance.new("Part", workspace)
  14.  
  15. part.Anchored=false
  16. part.Size=Vector3.new(
  17. 2,
  18. 2,
  19. 1
  20. )
  21. repeat wait() until player.Character
  22. repeat wait() until player.Character.Head
  23. weld(player.Character.Torso, part)
  24.  
  25. local pl=create("PointLight"){
  26. Name="PointLight",
  27. Parent=part,
  28. }
  29.  
  30. pl.Color=Color3.new(255/255, 0/255, 0/255)
  31.  
  32. wait(3)
  33. for i = 5, 0, -1 do
  34. pl.Enabled=true
  35. pl.Enabled=false
  36. wait(1)
  37. end
  38. local e=create("Explosion"){
  39. Parent=part
  40. }
  41. e.Position=player.Character.Torso.Position
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement