So when the player is in an area, a textlabel will be visible but when it leaves, it will disappear for that player. the problem is that it will also disappear for all users even though they are inside. What am I doing wrong?
Local Script
for i,v in pairs(workspace.SpecialObjs.Collisons:GetChildren()) do
v.TouchEnded:Connect(function()
script.Parent.TextLabel.Visible = false
end)
end
Objects: