Basics to Roblox Lua

in roblox •  6 months ago 

printing: print("whatever") used for debugging

game: just game, use before whatever; game.workspace,

parent: the thing something else is inside of, for example, the parent of workspace is game

local: basically so you don't have to repeat yourself
local part = game.workspace.part, so then you can do:
part.Anchored = true
instead of doing
game.workspace.part.Anchored = true

variable: basically a string, or number, or like boolean

booleans: a true or false statement

if: just if

else: if something doesn't happen, this happens

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!