wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Roblox L6 SpeedUp SlowDown

Total questions: 10

Worksheet time: 7mins

Name
Class
Date
1.

Where should you place the script for the SpeedUp part?

a)

In StarterPlayerScripts

b)

Inside the SpeedUp part

c)

In ServerScriptService

d)

Inside the Player object

2.

What is the default WalkSpeed for a Roblox character?

a)

32

b)

16

c)

8

d)

24

3.

What happens if we set CanCollide to True for the SpeedUp part?

a)

The player will not be able to pass through it

b)

The player will move faster

c)

The script will not work correctly

d)

The part will disappear

4.

The FindFirstChild function is used to detect whether an object has a child with a specific name.

a)

True

b)

False

5.

The Touched event is triggered when any object interacts with the part, including walls and other objects.

a)

True

b)

False

6.

Match the colors of the parts with their meanings:

a)

Increase speed and jump height

1.

Green

b)

Decrease speed

2.

Red

c)

Reset movement

3.

Black

7.

Function: reset()

human.WalkSpeed = ​ (a)  

human.JumpHeight = ​ (b)  

Choose from the below words
7.2
16
32
21
10.5
8.

What will happen if we forget to check if human exists before modifying WalkSpeed?

a)

The script will still work fine

b)

The game will crash immediately

c)

An error will occur if a non-human object touches the part

d)

The player will fly into the air

9.

What will occur if the SpeedUp part is set to be invisible?

a)

The game will crash

b)

The player will not be able to interact with it

c)

The player will not be able to see it but can still interact

d)

nothing change

10.

How can you ensure that the SpeedUp part only affects players and not other objects?

a)

By setting the part's CanCollide property to False

b)

By using a specific tag for players

c)

By checking the "Humanoid" in the script

d)

By placing it in a different service