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

The Parts arent visible. Help?

Asked by 9 years ago

Please make your question title relevant to your question content. It should be a one-sentence summary in question form.

So, the walkspeed script, adding on I tried to make it like the flash where light travels behind him. Any idea on how to insert particles scripting? And, whats wrong with the parts? I don't see them. It doesn't error out on the output because my speed increases.

01Player = game.Players.LocalPlayer
02Character = Player.Character
03Torso = Character.Torso
04Mouse = Player:GetMouse()
05hold = false
06 
07Mouse.Button1Down:connect(function()
08 
09 
10    if hold == false then
11        hold = true
12        while hold == true do
13            wait(0.00001)
14            Player.Character.Humanoid.WalkSpeed = Player.Character.Humanoid.WalkSpeed +1
15                local Brick = Instance.new("Part", Player)
View all 36 lines...

2 answers

Log in to vote
1
Answered by 9 years ago

if its not visible, is the part transparent? if so that can be fixed by adding this:

1Brick.Transparency = 0
0
If not said then the part will automatically have a transparency of 0 neoG457 315 — 9y
1
Just trying to cover all possibilitys. Thanks for the feedback. ghosteffectz 115 — 9y
0
np neoG457 315 — 9y
1
Thats what i do, giving useless answer :D ghosteffectz 115 — 9y
0
did you read the script? thanks anyways. tyler46783 0 — 9y
Ad
Log in to vote
0
Answered by
neoG457 315 Moderation Voter
9 years ago
01Player = game.Players.LocalPlayer
02Character = Player.Character
03Torso = Character.Torso
04Mouse = Player:GetMouse()
05hold = false
06 
07Mouse.Button1Down:connect(function()
08 
09 
10    if hold == false then
11        hold = true
12        while hold == true do
13            wait(0.00001)
14            Player.Character.Humanoid.WalkSpeed = Player.Character.Humanoid.WalkSpeed +1
15                local Brick = Instance.new("Part", Character) --Changed Player to Character
View all 36 lines...

I think it is because you made the part a child of Player which you defined as game.Players.LocalPlayer for it to be visible it would need to be a child of the players character.

0
Sorry if I'm wrong. neoG457 315 — 9y

Answer this question