Looking for a new theme for my scripting editor

Hello! I’m Dragoneruby. So, I’ve started programming like a year ago, and I’ve never could’ve found a satisfying scripting setup design. I think that it really helps you learn new things and code if you’re satisfied with your setup design and it doesn’t hurt your eyes. Could you show some of yours, so I can get some inspiration, if that’s okay?

                                    Thanks in advance.
6 Likes

Do you mean as in how I organize and format my code? Or do you mean how I organize scripts, remotes, object values etc.?

1 Like

Are you talking about the theme of the script editor? I.e. the colour of strings, numbers, etc?

2 Likes

Yes, that exactly.

Which one? [EDIT: Ok I see what you mean]

1 Like

Yep, talking 'bout that.

Scripting theme, strings, functions.

image

And here’s an example of what it looks like
image

13 Likes

Ooo, that looks great. Does the font variables in the sample code mirror your editor settings?

Yes.

1 Like

For functions, I like to have local functions, so I can call them when it’s needed, and it looks much more optimized than a :Connect(function() event. Also, you can return values.

For example,

local function getCoolCharacteristic()

return " is cool"

end


local function onPlayer(plr)

local NiceMessage = getCoolCharacteristic()

print(tostring(plr) .. NiceMessage) -- AbiZinho is cool

end

game:GetService("Players").PlayerAdded:Connect(onPlayer)

It’s really easy to call functions and return values this way, and in my opinion, looks much neater and professional.

As for the colours in the script editor, I use the default colours.

2 Likes

Smart thinking, thank you for your answer. This definetely helped.

I just use the default dark one, looks great tbh

3 Likes

There’s a huge thread of script editor themes, but New Members can’t see it. :frowning:


I’m on a red kick right now.

image
image

15 Likes

Default Colours and Light Theme, because I’m a sucker for the classics.

4 Likes

Not really the right place for such a thread, but here’s mine. Fits well with the dark theme:

image

12 Likes

I’ve been reddy for such a theme.

3 Likes

Share Code: ;K/A~Ac//A0/4A/ZAA/4/AAxAA~;

3 Likes

image

image

Based on the Dracula Theme

19 Likes

Looks very bright and saturated, I don’t think I could last very long at all with that :sweat_smile:

1 Like