Roblox Studio Lesson 14

Roblox Studio Lesson 14

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

Information Transfer

Information Transfer

4th - 6th Grade

12 Qs

MINECRAT: Learn and have fun

MINECRAT: Learn and have fun

5th - 7th Grade

13 Qs

Coding: Conditionals

Coding: Conditionals

6th - 8th Grade

10 Qs

Python Print Statement

Python Print Statement

6th - 10th Grade

12 Qs

Scratch 2

Scratch 2

KG - University

10 Qs

Scratch Quiz Review I

Scratch Quiz Review I

5th - 7th Grade

14 Qs

Audio and Video

Audio and Video

7th - 12th Grade

13 Qs

Class 6 -Scratch

Class 6 -Scratch

4th - 7th Grade

10 Qs

Roblox Studio Lesson 14

Roblox Studio Lesson 14

Assessment

Quiz

Computers

6th - 8th Grade

Hard

Created by

Future Teacher

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What function is used to make the flood move in a wave pattern?

math.random()

math.floor()

math.sin()

math.max()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The flood part should have CanCollide set to false so players can walk through it.

True

False

3.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

To apply damage to players, the script uses the TakeDamage function on the ________.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which part of Roblox Studio is the FloodScript placed in?

Workspace

ReplicatedStorage

ServerScriptService

StarterGui

5.

MATCH QUESTION

1 min • 1 pt

Match the variable with what it controls in the flood movement:

riseSpeed

Controls the height of the waves

waveFrequency

Controls how fast the waves move

waveAmplitude

Controls how fast the flood rises

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The flood only damages players when it touches their Humanoid part.

True

False

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would happen if you increase the value of waveAmplitude to 5?

The flood will stop rising

The waves will move faster

The flood will rise faster

The waves will become taller

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why do we use a while true do loop in the FloodScript?

To enable continuous execution of code for real-time processing.

To limit the execution of code to a specific number of iterations.
To pause the execution of code until a condition is met.
To execute code only once at the beginning of the program.

9.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

The flood part’s ________ can be set toForceField or Glass to make it look like water.