Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

ContextActionsService issue when trying to play script? SOLVED With the help of brokenVectors [closed]

Asked by 4 years ago
Edited 4 years ago

This has already been solved, button shows up now

0
Dude, please just put your script in code lines. I don't wanna use pastebin lol Cynical_Innovation 595 — 4y
0
k here check my answer JeffTheEpicRobloxian 258 — 4y

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?

3 answers

Log in to vote
1
Answered by 4 years ago
Edited 4 years ago

There are a lot of issues with your code.

  1. 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.

  2. You're connecting the function inside of the function, which makes absolutely no sense and it doesn't work.

  3. 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.

  4. :remove() is deprecated. Use :Destroy() instead.

  5. You're defining the player twice.

  6. You're redefining the character???

  7. CharacterAdded isn't written correctly, thanks @Dovydas118 for noticing lol

  8. 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.

01local player = game.Players.LocalPlayer
02 
03local Char = player.Character or player.CharacterAdded:Wait()
04local UIS = game:GetService("UserInputService")
05local humanoid = player.Character:WaitForChild("Humanoid")
06local context = game:GetService("ContextActionService")
07 
08local debounce = false
09local cooldown = 1 -- Time to wait between 2 dash
10 
11local anim = Instance.new("Animation")
12anim.AnimationId = "http://www.roblox.com/asset/?id=5311749838"--Insert ID here
13local function Onbuttonpress()
14 
15 
View all 81 lines...

Hope this helped

Ad
Log in to vote
1
Answered by 4 years ago
Edited 4 years ago

I am not sure... But don't you have to put the end on the same imaginary horizontal line? Or is that for easy reference? Please don't criticise me for my opinion...

0
I have no idea JeffTheEpicRobloxian 258 — 4y
0
This should be a comment instead of an answer because it doesn't answer the question... brokenVectors 525 — 4y
Log in to vote
0
Answered by 4 years ago
Edited 4 years ago
01local player = game.Players.LocalPlayer
02 
03local Char = player.Character or player.CharacterAdded:Wait()
04local UIS = game:GetService("UserInputService")
05local humanoid = player.Character:WaitForChild("Humanoid")
06local context = game:GetService("ContextActionService")
07 
08local debounce = false
09local cooldown = 1 -- Time to wait between 2 dash
10 
11local anim = Instance.new("Animation")
12anim.AnimationId = "http://www.roblox.com/asset/?id=5311749838"--Insert ID here
13local function Onbuttonpress()
14 
15 
View all 78 lines...
0
This above creats trails and dashes the player in the direction the player is facing JeffTheEpicRobloxian 258 — 4y