Advertisement
iiMurpyh

Untitled

Nov 24th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. local player = game:GetService("Players").LocalPlayer
  2. local plr = player.Character
  3.  
  4. plr.Walkspeed
  5. trail = Instance:new('Trail', workspace)
  6. trail.Transparency = 50
  7. trail.Lifetime = 6
  8. trail.MinLength = 0.01
  9. local color1 = Color3.new(1,1,0)
  10. local color2 = Color3.new(1,1,1)
  11. local sequence = ColorSequence.new(color1,color2)
  12. local decal = Instance.new('Texture')
  13. decal.Texture = 'rbxassetid://43191353'
  14. trail.Texture = decal
  15. trail.Parent = plr.Torso
  16. trail.Attatchment0 = plr.Head.FaceFrontAttachment
  17. trail.Attatchment1 = plr.Torso.WaistBackAttachment
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement