Font size
WorksheetsRoblox L6 SpeedUp SlowDown
Total questions: 10
Worksheet time: 7mins
Where should you place the script for the SpeedUp part?
In StarterPlayerScripts
Inside the SpeedUp part
In ServerScriptService
Inside the Player object
What is the default WalkSpeed for a Roblox character?
32
16
8
24
What happens if we set CanCollide to True for the SpeedUp part?
The player will not be able to pass through it
The player will move faster
The script will not work correctly
The part will disappear
The FindFirstChild function is used to detect whether an object has a child with a specific name.
True
False
The Touched event is triggered when any object interacts with the part, including walls and other objects.
True
False
Match the colors of the parts with their meanings:
Increase speed and jump height
Green
Decrease speed
Red
Reset movement
Black
Function: reset()
human.WalkSpeed = (a)
human.JumpHeight = (b)
What will happen if we forget to check if human exists before modifying WalkSpeed?
The script will still work fine
The game will crash immediately
An error will occur if a non-human object touches the part
The player will fly into the air
What will occur if the SpeedUp part is set to be invisible?
The game will crash
The player will not be able to interact with it
The player will not be able to see it but can still interact
nothing change
How can you ensure that the SpeedUp part only affects players and not other objects?
By setting the part's CanCollide property to False
By using a specific tag for players
By checking the "Humanoid" in the script
By placing it in a different service
