The script works only for one part but not for the another ones?
Asked by
5 years ago Edited 5 years ago
I'm currently developing a simulator game and I want to make people spam on the blocks. I have a problem and it is that this script works for one block:
01 | local firstPart = game.Workspace.firstPart |
02 | local secondPart = game.Workspace.secondPart |
03 | local thirdPart = game.Workspace.thirdPart |
07 | game.Players.PlayerAdded:Connect( function (plr) |
08 | local LS = Instance.new( "Folder" , plr) |
09 | LS.Name = "leaderstats" |
11 | local test = Instance.new( "IntValue" , LS) |
14 | firstPart.ClickDetector.MouseClick:Connect( function () |
15 | test.Value = test.Value + oneClick |
18 | if test.Value > = 100 then |
19 | secondPart.ClickDetector.MouseClick:Connect( function () |
20 | test.Value = test.Value + oneClick * 5 |
24 | if test.Value > = 500 then |
25 | thirdPart.ClickDetector.MouseClick:Connect( function () |
26 | test.Value = test.Value + oneClick * 25 |
I don't know what to do, it doesn't say there's any error but it doesn't work for the second part and the third one. And yes, I have tried several things but they did not work either.