wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Roblox Studio Lesson 16

Total questions: 10

Worksheet time: 10mins

Name
Class
Date
1.

What is the purpose of a Power-Up Pad in a game?

a)

To slow the player down

b)

To give temporary abilities like speed or jump boost

c)

To teleport the player to another area

d)

To increase flood height

2.

Which Roblox property controls how high a player can jump?

a)

Humanoid.WalkSpeed

b)

Humanoid.WalkPower

c)

Humanoid.JumpHeight

d)

Humanoid.JumpPower

3.

What event should you use to detect when a player touches a boost pad?

a)

Touched

b)

Clicked

c)

TouchedByPlayer

d)

PlayerAdded

4.

After giving a player a speed boost, which function should you use to return their speed back to normal after a few seconds?

a)

while true do

b)

task.wait()

c)

workspace:WaitForChild()

d)

math.random()

5.

The boost effect will last forever unless you reset the player’s WalkSpeed or JumpPower.

a)

True

b)

False

6.

You should use a LocalScript to apply speed boosts so it runs on the client side.

a)

True

b)

False

7.

To prevent multiple boosts stacking too quickly, we use a ___________ to keep track of the last time a player touched the pad.

4 lines
8.

The property used to change how fast a player walks is Humanoid. (a)   .

9.

Match the code line to its purpose:

a)

part.Touched:Connect(onTouch)

1.

Detect when player steps on pad

b)

humanoid.WalkSpeed = 50

2.

Temporarily increase player speed

c)

task.wait(5)

3.

Wait for boost duration

d)

humanoid.WalkSpeed = 16

4.

Reset to normal speed

10.

Arrange the following code steps in the correct order:

a)

Detect player touch

b)

Apply boost

c)

Wait a few seconds

d)

Reset speed

1)
2)
3)
4)