Show Menu
Cheatography

Roblox Scripting Cheat Sheet Cheat Sheet (DRAFT) by

This cheat sheet will contain almost everything you need to make roblox code.

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Players

local Players = game:GetService("Players")

Players.PlayerAdded:Connect(function(player)
    print("Player joined: " .. player.Name)
end)

--------This  function will obtain a players' name on joining
---------------------------------------------------------------

Testing