Answered by
6 years ago Edited 6 years ago
Hey, I have figured it out for you. First, the LocalScript should be in StarterGui. The trail can't be in the ServerStorage if you want to clone it locally. So you need to put the trail in the Workspace. I have improved your script a bit because it gave me some errors. here's the script:
002 | game.Players.PlayerAdded:connect( function (player) |
003 | script.LocalScript:clone().Parent = player.CharacterAdded:wait() |
008 | local cam = workspace.CurrentCamera |
009 | local player = game.Players.LocalPlayer |
010 | game.Workspace:WaitForChild(player.Name) |
011 | local Char = player.Character |
012 | local Humanoid = Char:WaitForChild( "Humanoid" ) |
013 | local Mouse = player:GetMouse() |
016 | local Trail = game.Workspace.Trail:Clone() |
018 | local Mouse = player:GetMouse() |
025 | Mouse.KeyDown:connect( function (key) |
026 | if not enabled and clicked then |
029 | if key = = "w" and _G.Energy > = 25 then |
032 | local function onTap() |
033 | if tick() - lastTapTime < 0.2 then |
034 | print ( "double Click!" ) |
037 | player.Character.UpperTorso.Velocity = cam.CFrame.lookVector * Vector 3. new( 1 , 0 , 1 ) * 400 |
038 | Trail.Parent = Char.HumanoidRootPart |
039 | local attachment 0 = Instance.new( "Attachment" , Char.Head) |
040 | attachment 0. Name = "TrailAttachment0" |
041 | local attachment 1 = Instance.new( "Attachment" , Char.HumanoidRootPart) |
042 | attachment 1. Name = "TrailAttachment1" |
043 | Trail.Attachment 0 = attachment 0 |
044 | Trail.Attachment 1 = attachment 1 |
047 | _G.Energy = _G.Energy - 25 |
063 | Mouse.KeyDown:connect( function (key) |
064 | if not enabled and clicked then |
067 | if key = = " " and _G.Energy > = 12.5 then |
070 | local function onTap() |
071 | if tick() - lastTapTime < 0.2 then |
072 | print ( "double Click!" ) |
075 | player.Character.UpperTorso.Velocity = Vector 3. new( 0 , 100 , 0 ) |
076 | Trail.Parent = Char.HumanoidRootPart |
077 | local attachment 0 = Instance.new( "Attachment" , Char.Head) |
078 | attachment 0. Name = "TrailAttachment0" |
079 | local attachment 1 = Instance.new( "Attachment" , Char.HumanoidRootPart) |
080 | attachment 1. Name = "TrailAttachment1" |
081 | Trail.Attachment 0 = attachment 0 |
082 | Trail.Attachment 1 = attachment 1 |
085 | _G.Energy = _G.Energy - 12.5 |
100 | for i = 1 , math.huge do |
103 | if _G.Energy < 100 then |
104 | _G.Energy = _G.Energy + 12.5 |
If you have any other questions or issues, please tell me.