📜  当玩家加入 roblxo 时打印 - Lua 代码示例

📅  最后修改于: 2022-03-11 14:54:55.782000             🧑  作者: Mango

代码示例1
local Players = game:GetService("Players")

Players.PlayerAdded:Connect(function(player)
    print(player.Name .. " joined the game!")
end)

Coded by Muppet#7188