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

Why won't my textlabel's text change or disappear?

Asked by 4 years ago
Edited 4 years ago

I am trying to make a script where Text will appear when you hit a winpad after an obby saying +10 points!, but For whatever reason it seems to not work. Is there a setting that could be on the text that makes it so it cannot change? The signals for "working" and "done" also work.

Here is what my StarterGui Folder looks like Here

01db = false
02script.Parent.Touched:connect(function(hit)
03    if hit.Parent:FindFirstChild("Humanoid") then
04        local add = game.StarterGui.Add.Points
05        if db == false then
06            print("working")
07            db = true
08            add.Text = "+10 points"
09            add.TextTransparency = 0
10            wait(3)
11            add.TextTransparency = 1
12            add.Text = "+0 points"
13            db = false
14            print("done")
15        end
16    end
17end)
0
you need to use players startergui DuckyRobIox 280 — 4y
0
also local or serverside? DuckyRobIox 280 — 4y
0
Do you think I need to use a LocalScript for this code? I don't want the changing message to appear for everyone, just the player Buthter 6 — 4y
0
lemme answer DuckyRobIox 280 — 4y

2 answers

Log in to vote
0
Answered by 4 years ago

StarterGui is named startergui for a reason. its the gui you get when you just join the game. So do this:

01db = false
02script.Parent.Touched:connect(function(hit)
03    if hit.Parent:FindFirstChild("Humanoid") then
04        local add = game.Players[hit.Parent.Name].PlayerGui.Add.Points
05        if db == false then
06            print("working")
07            db = true
08            add.Text = "+10 points"
09            add.TextTransparency = 0
10            wait(3)
11            add.TextTransparency = 1
12            add.Text = "+0 points"
13            db = false
14            print("done")
15        end
16    end
17end)

And yes this will work. DuckyRoblox's script was much longer and chunkier so use this.

Ad
Log in to vote
0
Answered by 4 years ago

For this I would use local script 100% so first heres your script so we would need to define player cause startergui doesnt control anything in live game so we gotta define PlayerGui

01db = false--debounce
02script.Parent.Touched:connect(function(hit)--Function of touched
03local player = game.Players.LocalPlayer--Get player Locally
04local plrgui = player:WaitForChild("PlayerGui")--Gets playergui
05    if hit.Parent:FindFirstChild("Humanoid") then --Checks if humanoid touched
06        local add = plrgui.Add.Points-- defines gui for player
07        if db == false then--If db = false then do
08            print("working")--Prints working
09            db = true--debounce = true
10        add.Visible = true--Makes text visible just incase it wasn't visible
11            add.Text = "+10 points" --Makes text that
12            add.TextTransparency = 0--makes transparency 1 Visible
13            wait(3)--debounces wait time
14            add.TextTransparency = 1--Makes transparency 0 Invisible
15            add.Text = "+0 points"--Makes text that
16            db = false --Makes db = false
17            print("done") --Prints done
18        end--ends debounce
19    end--Ends hit statement
20end) --Ends Function

Ok so basically I explained most of it and the problem accept if helps

0
That does look like a great solution but when i tested it I got an error saying "15:06:31.731 - Workspace.WinPad.Added:4: attempt to index nil with 'WaitForChild'" Buthter 6 — 4y

Answer this question