Font size
WorksheetsRoblox Basics - Final Exam
Total questions: 109
Worksheet time: 2hrs 49mins
What will this output?
print("Hello World")
Hello World
Error
Numbers, Strings, and Booleans are all Data types
True
False
A boolean can store numbers as well as true / false
True
False
A 'local' variable can only be accessed from within the script
True
False
the 'print' command will display data to the output screen
True
False
What would this code do?
game.Workspace.PracticePart.BrickColor = BrickColor.new(0.9,0.8,0.1)
Changes the brick color of PracticePart
Outputs an error
While loops will loop through the commands inside until it meets a condition, that tells it to end the loop.
True
False
Making a script a child of a brick(Parent-Child) will allow the script to interact with the brick, similar to how a local script only interacts with the script.
True
False
How do you add a model in Roblox Studio?
Choose in Toolbox
View on Explorer
View on Properties
Choose in Part
What is the code used to create a variable in Roblox?
Connect
if
local
Play()
What command is used to prevent all objects we build in Roblox from falling?
Transparent
Anchor
Orientation
Play Here
Where do we place the script if we want to clone an object like a coin?
ServerStorage
Workspace
Replicated Storage
ServerScriptService
How can we make an object play a sound when we touch it?
add Sound in Toolbox, then type Play() in script
add Decal in Toolbox then put on the object
Acvtice the Acnhor
update the Leaderstats
You can edit player bodies with player.Character
True
False
Nil means that there is no information
True
False
+= adds the information on top of the current information
True
False
-= subtracks the information on top of the current information
True
False
== checks to see if the two variables are different
True
False
~= checks to see if the two variables are different
True
False
== checks to see if the two variables are the same
True
False
.ToInt will convert the information to an integer
True
False
Local variables can only be edited within the script
True
False
A LocalScript interacts with the player and the world
True
False
A script interacts with the player and the item
True
False
player.Character.Humanoid.Health = 0 sets the players health to 0
True
False
PlayerAdded:Connect(onJoin) Runs "onJoin" when a player joins the game
True
False
script.Parent.Touched:Connect(GiveGold) will run the 'GiveGold' function
True
False
DataStoreService is a service that Roblox Studio offers that can save info
True
False
Data stored in a DataStore has a Key and a Value.
True
False
Events are cause-effect systems
True
False
Functions MUST have parameters
True
False
How do you change the material of a Part?
script.Parent.Material = "Neon"
script.Parent.Material = Neon
workspace.Part.Materal = 'Neon"
How do you change Transparency in script? (script is in part)
script.Parent.Transparency = 0.5
script.Workspace.tranz = 0.5
workspace.Transparency = 0.5
How to change color when script is in Part?
script.Parent.BrickColor = BrickColor.New("Color")
script.Parent.BrickColor = BrickColor.New(Color)
script.Parent.BrickColor = BrickColor.("Color")
script.Parent.BrickColor = BrickColor(Color )
What does
game.Workspace.Part
Execute
Gets a part from the Service called Workspace
Gets a Part from the Workspace called “Brick”
Nothing
Is Roblox Scripting Fun?
Yes
No
I don’t know
What is the parent of Brick in game.Workspace.Brick.BrickColor = BrickColor.Blue()
game
BrickColor
Blue
Workspace
What is the parent of Workspace in game.Workspace.Brick.BrickColor = BrickColor.Blue()
game
Brick
BrickColor
Blue
What is missing in this line?
game.______________.Baseplate.BrickColor = BrickColor.Blue()
Brick
Car
Workspace
Blue
How do you access "wood"?
local items = { [1] = "Wood", [2] = "Apple", [3] = "Box", }
(a)
What is OOP?
Object Oriented Programming
Object Online Programming
Online Object Placement
Object Online Placement
What is this?
E8 ?? ?? ?? ?? 83 C4 04 8B 4D F4 5F 5E 64 89 0D 00 00 00 00 5B 8B E5 5D C2 08 00 8D 4D E4
An address
An instruction
Bytecode
Hex code
What is the OS library for?
Online Session
Object Session
Operating System
Objection Session
What does a for loop do?
Runs a function multiple times
Iterates all child objects
Does whatever function is given in the form of a loop
Loops
How would you get the minimum value of this list of numbers?
1,9,2,5,3,4
math.min
max.max
math.minimum
os.minimum
What does math.noise do?
Returns a perlin noise value
Returns a random value
Returns a noise value
Returns a perlin value
What is setfflag()?
Set flag fast
Set fast flag
Set fast flog
Set falon flag
What does this do?
(a)
Create a bool value and print its current value
What parameter in SurfaceGui determines the position of the text on the selected wall?
Face
Name
Always on Top
Sizing Mode
What is the Debris service for?
Storing weapons
Creating items
Teleportation
Destroying objects after a specified time
What is math.random () for?
Calculating a distance
Generating random numbers
Creating random texts
Generating projectiles
What is CFrame?
It determines the smoothness of the game (number of frames per second).
Terrain Generation System.
An invisible frame around an object that defines the position and orientation of the object in 3D space.
Sky Generation System.
What is wait() for?
Stopping the game for a given period of time.
Accelerating the program
Waiting for a touch
Stopping the program for a given period of time
By default, does a player regain lost health at a rate of one point per second during gameplay?
Yes
No
What will be the result of disabling the CanCollide property on an object?
The object will be able to pass through other objects.
The object will not be able to pass through other objects.
The object becomes stationary.
The object will levitate in the air.
In Roblox Studio, are we able to group many objects into one Model?
Yes
No
To add a graphical interface (UI) that will be displayed on the player's screen, use...?
SurfaceGui
ScreenGui
Which item in Explorer contains all the blocks visible in the world?
ReplicatedStorage
Players
Workspace
ServerStorage
