This is a major game breaking bug, and I have not found a way to fix it. When a player stands on a part, it shows everyone in the game the gui, instead of that player who touched it as well as showing all the guis instead of the one it was supposed to show. local script
local player = game.Players.LocalPlayer
function Touch(hit)
if hit.Parent == player.Character then
player.PlayerGui.ShopGui.Frame.Visible = true
end
end
workspace:WaitForChild("ShopPart").Touched:Connect(Touch)