DylanD2003

Untitled

Apr 8th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. c = game.Players.LocalPlayer
  3. asd = c.Character
  4.  
  5. local mesh = Instance.new("SpecialMesh")
  6. mesh.Parent = asd.Torso
  7. mesh.MeshType = "Sphere"
  8. mesh.Scale = Vector3.new(1.5, 1.5, 3)
  9. mesh.Offset = Vector3.new(0,-.3,0)
  10. asd.Head.face.Texture = "http://www.roblox.com/asset/?id=323865883"
  11. function onTouched(part)
  12. local h = part.Parent:findFirstChild("Humanoid")
  13. if h~=nil then
  14. o1 = Instance.new("Sound")
  15. o1.Parent = workspace
  16. o1.SoundId = "rbxassetid://618667795"
  17. o1:Play()
  18. h.Parent:Destroy()
  19. mesh.Scale = mesh.Scale * 1.2
  20. end
  21. end
  22.  
  23. c.Character.Torso.Touched:connect(onTouched)
Add Comment
Please, Sign In to add comment