Services
Loops
Variables
Scripts
Player
50
True or False: A hacker cannot access ServerScriptService or ServerStorage?

True

50

What is wrong with this loop?

While True then


end

What is replace then with do?

50

What is a BoolValue?

True or False Variable

50

What script would you use in ServerScriptService?

(Local Script, Server Script)

What is Server Script?

50

How would you reference the player in StartPlayerScripts?

What is "Local player = game.Players.LocalPlayer"
100

How would you reference a service?

"game:GetService(ServiceName)"

100

Why do you want to put a wait in a loop?

It will loop so fast it will crash your game.

100

True or False: There is a color Variable.

False.
100

Why would you use a Server Script over a Local Script?

To do something in the server rather than the players client.

100

How would you reset a player instantly without setting health to 0?

What is "Player:LoadCharacter()"

150

What service would you use to sell a gamepass?

What is MarketPlaceService?

150

True or False: You can finish a loop using a variable?

True. 

Example:


Local Number = 1

While Number == 1 do

end

150

How do you save a variable to a player even when they leave and rejoin?

What is DataStore?

150

True or False: A script access anything in-game?

False, While most things can be accessed, Core scripts and Uis can't be tampered by game developers because roblox did not want people to destroying their games.

150

True or False: A hacker can mess with other peoples clients.

False, A hacker can only change things about their own client.

200

What service holds all the (Parts, Models and physical blocks players can touch)?

Workspace, The main place you build your map.

200

What is the sequence of code that would make a for  loop?

 For i = 0, 10, 1 do

end

This is an example of it would take i which = 0 and increase by 1 until it gets to 10.

200

True or False: You instance.New a variable?

True, You would use the method "Local New = Instance.New("ValueName")
200

True or False: You are able to make a script type in another script?

False, While you can change values scripts are not able to go inside another and change lines of code.
200
True or False: A hacker is able to manipulate Remote Events in your ReplicatedStorage or ServerStorage?

True, They can use this command: "game.ReplicatedStorage."RemoteName":FireServer()"

M
e
n
u