True
What is wrong with this loop?
While True then
end
What is replace then with do?
What is a BoolValue?
True or False Variable
What script would you use in ServerScriptService?
(Local Script, Server Script)
What is Server Script?
How would you reference the player in StartPlayerScripts?
How would you reference a service?
"game:GetService(ServiceName)"
Why do you want to put a wait in a loop?
It will loop so fast it will crash your game.
True or False: There is a color Variable.
Why would you use a Server Script over a Local Script?
To do something in the server rather than the players client.
How would you reset a player instantly without setting health to 0?
What is "Player:LoadCharacter()"
What service would you use to sell a gamepass?
What is MarketPlaceService?
True or False: You can finish a loop using a variable?
True.
Example:
Local Number = 1
While Number == 1 do
end
How do you save a variable to a player even when they leave and rejoin?
What is DataStore?
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.
True or False: A hacker can mess with other peoples clients.
False, A hacker can only change things about their own client.
What service holds all the (Parts, Models and physical blocks players can touch)?
Workspace, The main place you build your map.
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.
True or False: You instance.New a variable?
True or False: You are able to make a script type in another script?
True, They can use this command: "game.ReplicatedStorage."RemoteName":FireServer()"