so… I worked on some work from my other classes.

*Online Page from my history class worked on a big part of it with the class and I just finished this part. * ^^^^
I finished a paper about possible Roads in the Serengeti; there are three possible roads that can be built across the Serengeti park, and I choose one road then defended my opinion.
Extras: no need to read this
Last night I started learning Luau, the scripting language used mainly in Roblox, mostly because I was bored and wanted to learn. I think it helped me think more like a programmer
local Baseplate = game.Workspace.Baseplate
Baseplate.Material = Enum.Material.Brick
while true do
Baseplate.Transparency = 1
wait(0.1)
Baseplate.Transparency = 0.9
wait(0.1)
Baseplate.Transparency = 0.5
wait(0.1)
Baseplate.Transparency = 0.2
wait(4)
Baseplate.Color = Color3.new(0, 0, 0)
end
My first script: ^
It finds the Baseplate (which is the ground of the whole map), changes the texture to Brick, then changes the transparency 3 times. didn’t need to import time to do a “wait()”, probably because Roblox studio already has it. then it turns the Baseplate black. I learned that Enums are values that you can choose from (or something like that)
idk if I’ll keep learning it