I would like this script to change back to its original text when stepped off of and still working when you do step off of it
game.Workspace.Detector.Touched:Connect(function(hit) local player = hit.Parent if player:FindFirstChild("Humanoid") then script.Parent.Text = player.Name .. " - Click For More" end end)