RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"cREATE a server script that prints what every player has in there player gui"
-- server script game.Players.PlayerAdded:Connect(function(player) player.PlayerGui.ChildAdded:Connect(function(gui) print(player.Name .. " has " .. gui.Name .. " in their PlayerGui.") end) end)