Created
September 18, 2019 21:18
-
-
Save topherPedersen/9622ef265b7e664e73730a794a7cfdba to your computer and use it in GitHub Desktop.
Change Baseplate Color in Lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local basePlate = game.Workspace.Baseplate | |
while true do | |
basePlate.BrickColor = BrickColor.new(1.0, 0.08, 0.58) --hot pink | |
wait(0.25) | |
basePlate.BrickColor = BrickColor.new(0.0, 1.0, 0.0) --lime green | |
wait(0.25) | |
basePlate.BrickColor = BrickColor.new(0.0, 1.0, 1.0) --aqua | |
wait(0.25) | |
basePlate.BrickColor = BrickColor.new(0.0, 1.0, 1.0) --purple | |
wait(0.25) | |
basePlate.BrickColor = BrickColor.new(1.0, 1.0, 0.0) --yellow | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment