Advertisement
McSans

Untitled

Mar 19th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(player)
  2.  
  3. player.CharacterAdded:Connect(function(char)
  4.  
  5. local trail = game.ServerStorage.Trail:Clone()
  6.  
  7. trail.Parent = char.Head
  8.  
  9. local attachment0 = Instance.new(“Attachment”,char.Head)
  10.  
  11. attachment0.Name = “TrailAttachment0”
  12.  
  13. local attachment1 = Instance.new(“Attachment”,char.HumanoidRootPart)
  14.  
  15. attachment1.Name = “TrailAttachment1”
  16.  
  17. trail.Attachment0 = attachment0
  18.  
  19. trail.Attachment1 = attachment1
  20.  
  21. end)
  22.  
  23. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement