I cant find a working script for a roblox gui pop up, my current one: function touch(hit) if game.Players:findFirstChild(hit.Parent.Name) ~= nil then player = game.Players[hit.Parent.Name] if player.PlayerGui:findFirstChild("gui") == nil then gui = script.Info:clone() gui.Parent = player.PlayerGui repeat wait() until (player.Character.Torso.Position - script.Parent.Position).magnitude > 5 gui:remove() end end end
script.Parent.Touched:connect(touch)
doesnt work