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

Text Labels not going Visible?

Asked by 4 years ago
Edited 4 years ago

Idea: I'm trying to make it so whenever you pull out a weapon, the text at the bottom of the screen shows what weapon it is.

Problem: However, the text doesn't seem to be going visible which really confuses me. I also tried to make the labels change to whatever the string value is, but that didn't seem to work either. I'm a little new to scripting if you couldn't tell.

Thanks (I've highlighted the parts of the script that make the Gui go visible and not visible)

script:

01wait(1)
02local dance = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.Animation)
03local Player = game.Players.LocalPlayer
04local Action = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.ACtion)
05local Speed= 28
06local DefaultSpeed= 16
07local Fork = game.StarterGui.ScreenGui.TrustyFork -- Text with weapon text
08local Hands = game.StarterGui.ScreenGui.Hands -- Text with weapon Text
09 
10 
11 
12 
13 
14local Tool = script.Parent
15 
View all 36 lines...

1 answer

Log in to vote
0
Answered by 4 years ago

You don't change the GUIs from StarterGui. Everything in StarterGui clones into the Player's PlayerGui when they join. To change a player's GUIs, you would access their PlayerGui, which is a child of the player that stores all the players GUIs. You could refer to the objects as:

1local player = game.Players.LocalPlayer
2local trustforky = player.PlayerGui:WaitForChild("ScreenGui").TrustyFork
3local hands = player.PlayerGui:WaitForChild("ScreenGui").Hands

Your script would be:

01wait(1)
02local Player = game.Players.LocalPlayer
03local dance = Player.Character.Humanoid:LoadAnimation(script.Parent.Animation)
04local Action = Player.Character.Humanoid:LoadAnimation(script.Parent.ACtion)
05local Speed= 28
06local DefaultSpeed= 16
07local Fork = player.PlayerGui:WaitForChild("ScreenGui").TrustyFork
08local Hands = player.PlayerGui:WaitForChild("ScreenGui").Hands
09 
10local Tool = script.Parent
11 
12Tool.Equipped:Connect(function()
13    dance:Play()
14    Player.Character.Humanoid.WalkSpeed = Speed
15    Fork.Visible = true -- Visible Part
View all 31 lines...
0
If this is a script and not local script then it won't work rushknight 17 — 4y
0
Because there is no local player to the server rushknight 17 — 4y
0
Yup, it worked. You just made a capitalization error at line 7 and 8, "player" should be "Player" Thank you so much. NovaGooBoom 42 — 4y
Ad

Answer this question