Save
Roblox coding Luau
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
SB
Visit profile
Cards (239)
What will you be
able
to do by the end of this video?
Script
View source
What does this guide cover?
All of the
Scripting
essentials
View source
Where do you go to start scripting on Roblox?
Roblox.com
/create
View source
What button do you press to download Roblox Studio?
Start Creating
View source
What should you do after downloading Roblox Studio?
Sign in
View source
What type of new
project
should you create in Roblox Studio?
Baseplate
View source
Which windows should be open in Roblox Studio?
Explorer
,
Properties
,
Output
View source
How do you open the necessary windows in Roblox Studio?
Use the
View tab
View source
What is the first action you should take in your new project?
Delete the
spawnpoint
View source
How do you create a Part in Roblox Studio?
Press the plus button on
Workspace
View source
What tool do you select to change a Part's size?
Scale tool
View source
What happens to the Size property when you scale a Part?
It changes in the
Properties window
View source
What does changing the Transparency property do?
Makes the
Part
more transparent
View source
What is a Print Statement in scripting?
print
("Hello world!")
View source
What is a String in programming?
Text inside
quotation
marks
View source
How do you run your game in Roblox Studio?
Click the arrow below
Play
View source
What does the Output display when you run the game?
It shows "
Hello world!
"
View source
Why are Print Statements useful in debugging?
They help locate where code stops
working
View source
What are the three Data Types mentioned?
String
,
Number
, Boolean
View source
How do you identify a Boolean value in Properties?
Check for
checkboxes
View source
What does setting CastShadow to false do?
Turns off
shadow
casting
View source
How do you rename a Part in Roblox Studio?
Change the Name property in
Properties
View source
What is the correct way to reference a Part in a Script?
game
.
Workspace
.BluePart
View source
Why is Lua considered case-sensitive?
Capital
letters must be correct
View source
What does the line .CastShadow = false do in a Script?
Sets CastShadow
property
to
false
View source
What is the purpose of Variables in scripting?
To
simplify
code
writing
View source
How do you create a Variable in Lua?
local
part =
game
.
Workspace
.
BluePart
View source
What does the equals sign (=) do in Variable assignment?
Assigns a value to the
Variable
View source
How does a Variable relate to Data Types?
Variables
can
hold
any
Data Type
View source
What is the syntax for creating a new Part using Instance.new?
Instance.new("
Part
")
View source
Why must you assign Instance.new to a Variable?
To edit the
created
instance
View source
How do you set the Parent property of a new Part?
Change
nil
to game.
Workspace
View source
What should you do after creating a new Part?
Change its
Name property
View source
What is the Object Browser used for?
To explore available
scripting
objects
View source
How can you find information about Sparkles in the Object Browser?
Search
for
Sparkles
and view its
summary
View source
What does the :Destroy() function do?
Destroys
an object in the
game
View source
What happens when an event occurs in scripting?
Code can be
executed
in response
View source
What are properties in the context of scripting?
Attributes of
objects
in the game
View source
How do you identify the parent-child relationship in the Explorer?
By looking at
indentation levels
View source
What is a descendant in the context of objects?
An object that is not a
direct child
View source
See all 239 cards