--Ive been stopping alot to doing scripts, i cant, i have life too, sorry for leaving the R6 animated scripts, i will make more if i can --Thanks for reading this --Also heres a trail script, its not visible for others local char = game.Players.LocalPlayer.Character local head = char:FindFirstChild("Head") local hrp = char:FindFirstChild("HumanoidRootPart") if head and hrp then local attachment0 = Instance.new("Attachment", head) local attachment1 = Instance.new("Attachment", hrp) local trail = Instance.new("Trail") trail.Attachment0 = attachment0 trail.Attachment1 = attachment1 trail.Lifetime = 2 trail.Texture = "rbxassetid://18421838422" trail.TextureMode = Enum.TextureMode.Stretch trail.Transparency = NumberSequence.new(0.2, 1) trail.MinLength = 0.5 trail.WidthScale = NumberSequence.new(0.7) trail.Parent = char end