Roblox Studio Lesson 10

Roblox Studio Lesson 10

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

Computer Lab Safety Week 2

Computer Lab Safety Week 2

6th - 9th Grade

7 Qs

MINECRAFT: EDUCATION EDITION

MINECRAFT: EDUCATION EDITION

KG - 12th Grade

10 Qs

Scratch Basics

Scratch Basics

7th Grade

12 Qs

Chp. 4: Computers in Society: designing a computer game quiz

Chp. 4: Computers in Society: designing a computer game quiz

8th Grade

10 Qs

Speed Typing

Speed Typing

4th - 6th Grade

10 Qs

Computer Software

Computer Software

6th - 7th Grade

10 Qs

CM-Acronym Quiz 3

CM-Acronym Quiz 3

7th Grade - University

10 Qs

minecraft caves and cliffs

minecraft caves and cliffs

KG - Professional Development

14 Qs

Roblox Studio Lesson 10

Roblox Studio Lesson 10

Assessment

Quiz

Computers

6th - 8th Grade

Medium

Created by

Future Teacher

Used 2+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of using a dictionary table in the poisonous air script?

To store sound effects

To store player movement speed

To keep track of players inside the poison area

To change the part color

2.

CLASSIFICATION QUESTION

3 mins • 1 pt

Sort the following into 'Visual Settings' or 'Script Behavior'

Groups:

(a) Visual Settings

,

(b) Script Behavior

Anchored = true

Material = ForceField

Transparency = 0.7

TouchEnded event

While loop for damage

DamagePerSecond = 10

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Players can see the poison part clearly even if its transparency is 1

True

False

4.

MATCH QUESTION

1 min • 1 pt

Match the scripting part to what it does:

Stops damage when player leaves

local damagePerSecond = 10

Starts damage when a player enters

Touched:Connect(function(hit))

Removes player from damage table

TouchEnded:Connect(function(hit))

Sets how much damage to apply per tick

playersInAir[character] = nil

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why do we use task.spawn() in the script?

To move the poison part

To delay the start of the game

To run poison damage code continuously without freezing game

To stop the game completely

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Setting the CanCollide property to false allows players to pass through the poison air.

True

False

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does humanoid:TakeDamage(damagePerSecond) do?

Instantly kills the player

Teleports the player

Slowly removes player’s health

Changes the part color

8.

MATCH QUESTION

1 min • 1 pt

Match the part property to its purpose:

Makes it look like a glowing area

CanCollide = false

Player can walk through it

Transparency = 0.7

Makes the poison harder to see

Material = ForceField

Keeps the part from falling or moving

Anchored = true

9.

REORDER QUESTION

1 min • 1 pt

Arrange the following logic of the damage loop inside task.spawn:

Loop through players in air

Check if humanoid exists

Apply TakeDamage

Wait 1 second