Answered by
4 years ago Edited 4 years ago
There are a lot of issues with your code.
Almost 70% of all your lines are just creating trails and editing their properties. You can make an array of all the player's limbs, and parent the trails to them.
You're connecting the function inside of the function, which makes absolutely no sense and it doesn't work.
You also have an event inside of the function that's connected, which also makes no sense??? This will cause memory leaks and it's just useless.
:remove() is deprecated. Use :Destroy() instead.
You're defining the player twice.
You're redefining the character???
CharacterAdded isn't written correctly, thanks @Dovydas118 for noticing lol
You're using the second parameter of Instance.new, which parents the object even before you change any properties, which then fires all the Changed events(decreases performance a ton)
Note that I didn't fix every single issue, I'll leave that up to u. Please tell me if anything doesn't work.
01 | local player = game.Players.LocalPlayer |
03 | local Char = player.Character or player.CharacterAdded:Wait() |
04 | local UIS = game:GetService( "UserInputService" ) |
05 | local humanoid = player.Character:WaitForChild( "Humanoid" ) |
06 | local context = game:GetService( "ContextActionService" ) |
11 | local anim = Instance.new( "Animation" ) |
13 | local function Onbuttonpress() |
16 | if debounce = = false then |
18 | local playAnim = humanoid:LoadAnimation(anim) |
20 | local Character = game.Workspace:WaitForChild(player.Name) |
21 | Char.HumanoidRootPart.Velocity = Char.HumanoidRootPart.CFrame.lookVector* 500 |
22 | local Trail 1 = Instance.new( "Trail" ,Character) |
23 | Trail 1. Attachment 0 = Character.RightFoot:FindFirstChildOfClass( "Attachment" ) |
24 | Trail 1. Attachment 1 = Character.RightLowerLeg:FindFirstChildOfClass( "Attachment" ) |
27 | Trail 1. WidthScale = NumberSequence.new( 0.8 ) |
28 | Trail 1. FaceCamera = false |
29 | local Trail 2 = Instance.new( "Trail" ,Character) |
30 | Trail 2. Attachment 0 = Character.LeftFoot:FindFirstChildOfClass( "Attachment" ) |
31 | Trail 2. Attachment 1 = Character.LeftLowerLeg:FindFirstChildOfClass( "Attachment" ) |
33 | Trail 2. MaxLength = 0.5 |
34 | Trail 2. WidthScale = NumberSequence.new( 0.8 ) |
35 | Trail 2. FaceCamera = false |
36 | local Trail 3 = Instance.new( "Trail" ,Character) |
37 | Trail 3. Attachment 0 = Character.LeftLowerArm:FindFirstChildOfClass( "Attachment" ) |
38 | Trail 3. Attachment 1 = Character.LeftHand:FindFirstChildOfClass( "Attachment" ) |
40 | Trail 3. MaxLength = 0.5 |
41 | Trail 3. WidthScale = NumberSequence.new( 0.8 ) |
42 | Trail 3. FaceCamera = false |
43 | local Trail 4 = Instance.new( "Trail" ,Character) |
44 | Trail 4. Attachment 0 = Character.RightLowerArm:FindFirstChildOfClass( "Attachment" ) |
45 | Trail 4. Attachment 1 = Character.RightHand:FindFirstChildOfClass( "Attachment" ) |
46 | Trail 4. Lifetime = 0.25 |
47 | Trail 4. MaxLength = 0.5 |
48 | Trail 4. WidthScale = NumberSequence.new( 0.8 ) |
49 | Trail 4. FaceCamera = false |
50 | local Trail 5 = Instance.new( "Trail" ,Character) |
51 | Trail 5. Attachment 0 = Character.UpperTorso:FindFirstChildOfClass( "Attachment" ) |
52 | Trail 5. Attachment 1 = Character.LowerTorso:FindFirstChildOfClass( "Attachment" ) |
53 | Trail 5. Lifetime = 0.25 |
54 | Trail 5. MaxLength = 0.5 |
55 | Trail 5. WidthScale = NumberSequence.new( 0.8 ) |
56 | Trail 5. FaceCamera = false |
59 | Trail 1. Transparency = NumberSequence.new(i) |
60 | Trail 2. Transparency = NumberSequence.new(i) |
61 | Trail 3. Transparency = NumberSequence.new(i) |
62 | Trail 4. Transparency = NumberSequence.new(i) |
63 | Trail 5. Transparency = NumberSequence.new(i) |
79 | context:BindAction( "Startdash" , Onbuttonpress, true , "q" ) |
80 | context:SetTitle( "Startdash" , "Dash" ) |
81 | context:SetPosition( "Onbuttonpress" , UDim 2. new( 0.628 , 0 , 0.767 , 0 )) |
Hope this helped
Closed as Non-Descriptive by botw_legend, iivSnooxy, IAmNotTheReal_MePipe, Dovydas1118, and Leamir
This question has been closed because its title or content does not adequately describe the problem you are trying to solve.
Please ensure that your question pertains to your actual problem, rather than your attempted solution. That is, you were trying to solve problem X, and you thought solution Y would work, but instead of asking about X when you ran into trouble, you asked about Y.
Why was this question closed?