Changing script editor colors - Rainbow Script Editor!

This is really great! I’ve been messing around a bit & changed a couple of colors.

Here’s the code (you already see it from the image, but still):

local Studio = settings().Studio

Studio["Comment Color"] = Color3.fromRGB(26, 100, 233)

--[[

	omg wow

--]]

Studio['"local" Color'] = Color3.fromRGB(85, 255, 0)
local h = "h"

Studio['"function" Color'] = Color3.fromRGB(0, 85, 255)

function HelloWorld()
	print("Hello World!")
end

Studio['"nil" Color'] = Color3.fromRGB(255, 0, 0)

local nothing = nil

Studio["Bool Color"] = Color3.fromRGB(255, 255, 0)

local yes = true

Studio["Bracket Color"] = Color3.fromRGB(120, 120, 120)

local someTable = {
	true,
	false
}

Studio["Built-in Function Color"] = Color3.fromRGB(170, 85, 0)

table.insert(someTable, "yes")
1 Like