Advertisement
yome576

Untitled

Sep 5th, 2015
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. chr = workspace.yome576
  2.  
  3. part = Instance.new("Part",workspace)
  4. part.CanCollide = false
  5. part.Anchored = true
  6. part.BrickColor = BrickColor.Black()
  7. part.Transparency = 0
  8. part.Size = Vector3.new(10,10,10)
  9. fire = Instance.new("Fire", workspace.Part)
  10. mesh = Instance.new("SpecialMesh",part)
  11. mesh.MeshType = "Sphere"
  12.  
  13. part.Touched:connect(function(p)
  14. local h = p.Parent:FindFirstChild("Humanoid")
  15. if h and h.Parent.Name ~= "yome576" then
  16. h.Parent:Destroy()
  17. end
  18. end)
  19.  
  20. while game:GetService('RunService').RenderStepped:wait() do
  21. part.CFrame = chr.Torso.CFrame
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement