You can write your topic however you want, but you need to answer these questions:
-
I want to make when humanoid touches the part then textlabels text changes to “lol” or something.
-
What is the issue? Include screenshots / videos if possible!
No errors in output, btw it prints if you put there print(“lol”). -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I tried different things.
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
local part = game.Workspace.C
local button = game.StarterGui.TimerGUI.TimerLABEL
part.Touched:Connect(function(hit)
if game.Players:GetPlayerFromCharacter(hit.Parent) then
button.Text = "lol"
end
end)