When set to false, this property allows players to pass through objects as if they weren't there.
What is CanCollide?
This type of loop works the same way as the Forever loop in Scratch.
What is the While loop?
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.
To display an object in your game, place it within this Service in the Explorer window.
print(This is a string)
What is
print("This is a string")?
Your parts may fall down if you forget to enable this property.
What is Anchor?
When Run, this for loop will print "Hello" this many times.
for i=0, 20, 1 do
print("Hello")
end
What is 20?
This data type consists of a list of named values for the type.
What is an Enum?
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?
local x = 5
local y = 5
sum = x + y
What is
local sum = x + y?
This part when flattened can be used to create a disc.
What is a Cylinder?
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?
This Event is used to detect if your character has stepped on a part.
What is Touched?
This window helps you to view messages to debug code errors.
What is the Output window?
local x = 10
if x == 10 then
local isItTen = "true"
end
What is
local isItTen = true?
When creating checkpoints, this property of a Spawn Location part should be set to false.
What is the Neutral property.
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"?
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?
This shortcut key helps you to find parts more easily.
What is the "F" key?
local lavaPart = script.Parent
function changeColor()
lavaPart.BrickColor = BrickColor.new("Really red")
end
lavaPart.Touched.Connect(changeColor)
What is lavaPart.Touched:Connect(changeColor)?
Use this to display all Materials by their specific categories.
What is Material Manager?
A function can be passed these, to provide arguments (values) to the function code.
What are parameters?
Similar to Vector3, this data type includes an objects Position, but also includes its Orientation.
What is a CFrame?
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?
function printThis()
print("Today is Friday July 19th")
end)
What is call the printThis() function?