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:
02 | local dance = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.Animation) |
03 | local Player = game.Players.LocalPlayer |
04 | local Action = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.ACtion) |
07 | local Fork = game.StarterGui.ScreenGui.TrustyFork |
08 | local Hands = game.StarterGui.ScreenGui.Hands |
14 | local Tool = script.Parent |
17 | Tool.Equipped:Connect( function () |
19 | Player.Character.Humanoid.WalkSpeed = Speed |
24 | Tool.Unequipped:Connect( function () |
26 | Player.Character.Humanoid.WalkSpeed = DefaultSpeed |
32 | Tool.Activated:Connect( function () |