This script isn't doing anything. It is a regular script inside a part in workspace. NOTHING IN OUTPUT!
script.Parent.Touched:connect(function(part) local h = part.Parent:FindFirstChild("Humanoid") if h then script.Parent.Parent.Barrier1.CanCollide = true end end) script.Parent.TouchEnded:connect(function(part) local h = part.Parent:FindFirstChild("Humanoid") if h then workspace.GuiText.Game.Disabled = false script.Parent.CanCollide = true script.Parent.SelectionBox.Transparency = 0 script.Parent.Transparency = 0 script.Parent.Script:remove() script:remove() end end)