01 | local questNumber = workspace.Quest.QuestNumber |
02 |
03 |
04 | function onTouched(hit) |
05 | if questNumber.Value = = 1 then |
06 | questNumber.Value = 0 |
07 |
08 | end |
09 |
10 | end |
11 |
12 | script.Parent.Touched:connect(onTouched) |
I want to make a block that when you touch it, the script checks if the value is 1 and if the value is 1 the script sets this value to 0. Its really simple, but I DONT UNDERSTAND WHY MY SCRIPT UP THERE DONT WORK!! Pls can someone help me.
(sorry if my English is bad)
I would personally prefer to use Anonymous functions
Also the Touched event happens whenever the part is touched by any object you would have to make sure you add limitations to make sure that only a character can touch the part:
01 | local questNumber = workspace.Quest.QuestNumber |
02 |
03 |
04 | script.Parent.Touched:Connect( function (hit) |
05 | if hit.Parent:FindFirstChild( "Humanoid" ) then -- make sure the touched object is a player |
06 | if questNumber.Value = = 1 then |
07 | questNumber.Value = 0 |
08 | end |
09 | end |
10 | end ) |
Is your code in a Script or a LocalScript?
Make sure it's in a Script, because with FilteringEnabled on, the LocalScript won't be able to set the value correctly.
Otherwise, is there any error message printing out?