Advertisement
cat568

Untitled

Mar 8th, 2019
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. plr = owner
  2. name = owner.Name
  3. Character = owner.Character
  4. hed = owner.Character.Head
  5.  
  6.  
  7. plr.Chatted:connect(function(msg)
  8. game:service'Chat':Chat(hed, msg, 2)
  9. if msg == "wall/" then
  10.  
  11. local wall = Instance.new("Part",Character.Torso)
  12. wall.Name = "wall"
  13.  
  14. wall.Anchored = true
  15. wall.Rotation = Character.Torso.Rotation + Vector3.new(90, 0, 0)
  16. wall.Size = Vector3.new (1, 10, 10)
  17. wall.CFrame = Vector3.new (10, 0, 0) + Character.Torso.CFrame
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26. end
  27.  
  28.  
  29.  
  30.  
  31. if msg == "die/" then
  32. Character:breakJoints()
  33. end
  34.  
  35. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement