What are you working on currently? (2020)

Some more of these creations i made since that’s not just all of them, and the last shown were around 3 or so.



24 Likes

On a friend’s map, our factory ends today

18 Likes

I played the game, and I liked it. I’m lagging a bit though because of all the terrain.

2 Likes

Well that will be solved soon, I will have to ask my partner for his opinion

3 Likes

The factory looks nice! I’m not working on anything at the moment though.

1 Like

It is ok you can do whatever you want to the terrain :smiley: Fix anything!

Recent Progress On My San Francisco Street Car

ROBLOX

image

REAL LIFE image

10 Likes

That looks cool I am just wondering how did you make that green mist?

Making a cave course in my game Course Adventure, which should be released around Christmas.


When its done, I will video the whole course cause this is only a little bit of it.

7 Likes

The future is best!

48 Likes

Currently working on a side project, “hiding” the shadows from the lighting to make this cool effect.
Won’t work on this often.

Also tried using this on the crossroads map, looks alright :slight_smile: :

This uses a lot of HandleAdornments, although I realised that I could’ve done this with viewportframes…

It really gives that “retro” feel.

12 Likes

Working on a statistics / achievements page!




(a lot of badges still have placeholder images)

11 Likes

I’m working on a GTA-based game

I’m working on a 2.5D interactive physics puzzle game. The task system (put the living blocks to the glowy thing) works, I just don’t have a UI for it, so I did not finish it.

The game is still missing many features but I’m glad I got this far.

Here’s me playing with the cute blocks.

15 Likes

Just finished making my first gun.
deagle2

2 Likes

Recently I made a pirate ship for a commission.

18 Likes

Making a map based on Naruto, Kirigakure Finished.
Iwagakure: What are you working on currently? (2020) - #3953 by Nikoverc
Sunagakure: What are you working on currently? (2020) - #4018 by Nikoverc
Kumogakure: What are you working on currently? (2020) - #4152 by Nikoverc

18 Likes








23 Likes

Still working on my Parser/Lexer framework.
Right now everything is working near-flawlessly on the Lexeme end- with me adding things not available to normal Roblox pattern matching.

The lexer grammar will take the input:

	Float: [0-9]('.' [0-9]*)? exclude ('f'| 'F');
	StringSingle: '\'' not '\''* '\'';
	String: '"' not '"'* '"' ;

And with a fed in String: 0.1101f 'hello' "" "I am" "billy"

And will spit out (in a format suitable thats tl;dr):

Float 0.1101
StringSingle 'hello'
String ""
String "I am"
String "billy"

‘not’ simply means it matches whatever isnt the component at hand,
‘exclude’ matches the component, but does not capture the string.

With this so far- I am happy with the lexer, I just need to add ‘fragments’ (ANTLR feature) and ill be moving onto the parser.

EDIT: If you are familiar with ANTLR, do you like my solution for strings, as opposed to pushMode/popMode?

6 Likes

True time reversal.

33 Likes