Font size
WorksheetsRoblox Studio Lesson 16
Total questions: 10
Worksheet time: 10mins
What is the purpose of a Power-Up Pad in a game?
To slow the player down
To give temporary abilities like speed or jump boost
To teleport the player to another area
To increase flood height
Which Roblox property controls how high a player can jump?
Humanoid.WalkSpeed
Humanoid.WalkPower
Humanoid.JumpHeight
Humanoid.JumpPower
What event should you use to detect when a player touches a boost pad?
Touched
Clicked
TouchedByPlayer
PlayerAdded
After giving a player a speed boost, which function should you use to return their speed back to normal after a few seconds?
while true do
task.wait()
workspace:WaitForChild()
math.random()
The boost effect will last forever unless you reset the player’s WalkSpeed or JumpPower.
True
False
You should use a LocalScript to apply speed boosts so it runs on the client side.
True
False
To prevent multiple boosts stacking too quickly, we use a ___________ to keep track of the last time a player touched the pad.
The property used to change how fast a player walks is Humanoid. (a) .
Match the code line to its purpose:
part.Touched:Connect(onTouch)
Detect when player steps on pad
humanoid.WalkSpeed = 50
Temporarily increase player speed
task.wait(5)
Wait for boost duration
humanoid.WalkSpeed = 16
Reset to normal speed
Arrange the following code steps in the correct order:
Detect player touch
Apply boost
Wait a few seconds
Reset speed
