It is supposed to make a billboard GUI go in a local part that only one player can see, but doesn't work, help? This is a local script in the StarterGui
Player = game.Players.LocalPlayer Part = game.Workspace.Mouse_over function Enter(Player) print("Oh my... " .. Player.Name .. " hovered over my parent") a = game.Lighting.BillboardGui:Clone() a.Parent = Player.PlayerGui a.Adornee = Part end Part.ClickDetector.MouseHoverEnter:connect(Enter) function Leave(Player) print("Oh my... " .. Player.Name .. " left my parent") if Player.PlayerGui:FindfirstChild("BillboardGui") then Player.PlayerGui.BillboardGui:remove() end end Part.ClickDetector.MouseHoverEnter:connect(Enter)
The GUI is in the PLayerGui, I just cant see it