01 | local value = script.Parent.Value.Value |
02 | script.Parent.Touched:connect( function (hit) |
03 | if hit and hit.Parent and hit.Parent:FindFirstChild( "Humanoid" ) then |
04 | script.Parent.Value.Value = script.Parent.Value.Value + 1 |
05 | script.Parent.SurfaceGui.TextLabel.Text = "Desert Map - " .. value |
06 | end |
07 | end ) |
08 | script.Parent.TouchEnded:connect( function (hit) |
09 | if hit and hit.Parent and hit.Parent:FindFirstChild( "Humanoid" ) then |
10 | script.Parent.Value.Value = script.Parent.Value.Value - 1 |
11 | script.Parent.SurfaceGui.TextLabel.Text = "Desert Map - " .. value |
12 | end |
13 | end ) |
the script should change a textlabel but when a player steps on it, it doesn't do that.
on line 3, do "if hit.Parent:FindFirstChild("Humanoid") then" and on line line 9, the same thing. "if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then" doesnt do anything but create alot of lag in the syntax of the script. it messes the the system up`
1 | if hit.Parent:FindFirstChild( "Humanoid" ) then |