Parts & Properties
Code
Roblox Basics
Roblox Studio Interface
That's "Cap"
100

When set to false, this property allows players to pass through objects as if they weren't there.

What is CanCollide?

100

This type of loop works the same way as the Forever loop in Scratch.

What is the While loop?

100

This is how Roblox refers to each of the parent level names listed within the Explorer window (Workspace/Players/Lighting/etc).

What is a Service.

100

To display an object in your game, place it within this Service in the Explorer window.

What is the Workspace?
100

print(This is a string)

What is 

print("This is a string")?

200

Your parts may fall down if you forget to enable this property.

What is Anchor?

200

When Run, this for loop will print "Hello" this many times.

for i=0, 20, 1 do
print("Hello")
end

What is 20?

200

This data type consists of a list of named values for the type.

What is an Enum?

200

You can anchor a part by enabling the property in the Properties window or by clicking the Anchor icon from this menu.

What is Home?

200

local x = 5
local y = 5
sum = x + y

What is
local sum = x + y?

300

This part when flattened can be used to create a disc.

What is a Cylinder?

300

The function, TweenService:Create(), takes information about the animation and generates this object which can be used to play the animation.

What is a Tween?

300

This Event is used to detect if your character has stepped on a part.

What is Touched?

300

This window helps you to view messages to debug code errors.

What is the Output window?

300

local x = 10
if x == 10 then
local isItTen = "true"
end

What is
local isItTen = true?

400

When creating checkpoints, this property of a Spawn Location part should be set to false.

What is the Neutral property.

400

The true condition in the code below will print this:
local light = "Green"
if light == "Red" then print("Stop") end
print("Go")

What is "Go"?

400

If a part is within a model and that same model is in Workspace, enter this to reference that part from a script inside ServerScriptService?

What is Workspace.Model.Part?

400

This shortcut key helps you to find parts more easily.

What is the "F" key?

400

local lavaPart = script.Parent
function changeColor()
lavaPart.BrickColor = BrickColor.new("Really red")
end

lavaPart.Touched.Connect(changeColor)

What is lavaPart.Touched:Connect(changeColor)?

500

Use this to display all Materials by their specific categories.

What is Material Manager?

500

A function can be passed these, to provide arguments (values) to the function code.

What are parameters?

500

Similar to Vector3, this data type includes an objects Position, but also includes its Orientation.

What is a CFrame?

500

These 2 tools would be used together if you wanted to cut out a doorway from a solid Part

What are the Negate and Union tools?

500

function printThis()
     print("Today is Friday July 19th")
end)

What is call the printThis() function?




M
e
n
u