Advertisement
avigeo

Untitled

May 31st, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. char = plr.Character
  3. mouse = plr:GetMouse()
  4. Instance.new("ForceField", char)
  5.  
  6.  
  7. function die()
  8. plr = game.Players.LocalPlayer
  9. char = plr.Character
  10. local ex = Instance.new("Part", game.Workspace)
  11. local mesh = Instance.new("SpecialMesh", ex)
  12. ex.CanCollide = false
  13. ex.CFrame = char.Torso.CFrame - Vector3.new(0, 3, 0)
  14. mesh.MeshId = "http://www.roblox.com/asset/?id=20329976"
  15. ex.BrickColor = BrickColor.new("Gold")
  16. ex.Anchored = true
  17. mesh.Scale = Vector3.new(10,10,10)
  18. ex.Size = Vector3.new(4,1,4)
  19. local ringpart = Instance.new("Part", game.Workspace)
  20. local ringmesh = Instance.new("SpecialMesh", ringpart)
  21. ringmesh.Scale = Vector3.new(10,10,10)
  22. ringmesh.MeshId = "http://www.roblox.com/asset/?id=3270017"
  23. ringpart.CanCollide = false
  24. ringpart.CFrame = char.Torso.CFrame - Vector3.new(0,-3,0)
  25. ringpart.Material = Enum.Material.Neon
  26. ringpart.Anchored = true
  27. ringpart.BrickColor = BrickColor.new("Really red")
  28. ringpart.Size = Vector3.new(4,1,4)
  29. for i=1, 600 do
  30. mesh.Scale = mesh.Scale + Vector3.new(1,1,1)
  31. wait(0.01)
  32. ex.Transparency = ex.Transparency + 0.01
  33. ex.Orientation = ex.Orientation + Vector3.new(0,10,0)
  34. ringmesh.Scale = mesh.Scale + Vector3.new(1,1,1)
  35. ringpart.Transparency = ringpart.Transparency + 0.01
  36. ringpart.CFrame = ringpart.CFrame * CFrame.fromEulerAnglesXYZ(0.3,0,0)
  37. end
  38. ringmesh:Destroy()
  39. ringpart:Destroy()
  40. mesh:Destroy()
  41. ex:Destroy()
  42. end
  43. mouse.Button1Down:connect(die)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement