What are you working on currently? (2017)

Going to build that thing as well, with some kind of unreliability DLC :smirk_cat:

Oh, the Places You’ll Go!

9 Likes

I love the design of the wall/train but the realistic background is contrasting the fun/cartoony aesthetic imo.

6 Likes

That was the point! :slight_smile:

3 Likes

I feel like that’s the artist’s way of saying “It’s a feature, not a bug!”

9 Likes

I like (Lua) challenges:

local function isNumber(val)
	return pcall(function() return "1"+val end) and not
		pcall(function() return "".repeat(val,1) end)
end

Roblox: here’s Lua and a bunch of extra types
Developers: it’s pretty hard to get the type of something
Roblox: here’s typeof()
Developers: alright, let’s try to detect types using only pcall

27 Likes

I don’t think this counts because you called repeat.

function isNumber(val)
   return pcall(function() return val+1 end) and not
      pcall(function() return val.repeat end)
end

Only calls pcall

I just built my computer last summer with a 1070 and some i7 and 32gb of RAM and like a month ago studio was lagging HORRIBLY while testing a 50x50 (2500 total) frame map

Pretty sure he meant globals. Otherwise you could say I’m also using functions, which would be annoying to block since pcall kiiiiind of needs functions.

Roblox. A magical world where scripters keep making stuff that should be impossible, but still make it.

Super excited, we just got a new member joining our team and he’s damn good. I’m stoked. Here’s two maps, creds to @TrustMeImRussian
1eb8f65e60047ba5602d93a90a0061f0793d7bdb.jpg
ae5e3c176245cf588dcfc2889db668b1ee056cdc.jpg

0a1bbc1d7f3c83d9306272c34955ff3be3aac6a6.jpg
f7c21b36032a1e0bd528e5dfa80794b18a5cc1e9.jpg

19 Likes

Lol I don’t even know

https://gyazo.com/4173894ea9e41e6b406c394e4e609a37
https://gyazo.com/d00a679f8eabf9004447d9cc1611c10f

2 Likes

String methods require a dependency on the string library, so it’s not allowed.

It’s an interesting exercise; the script can be dropped into an arbitrary environment, and it probes for available features, starting from the most basic.

Here’s the first line of the script. It tests for an error function, but it has to be able to communicate without using error itself:

if error == nil then
	({})["missing required feature: error function"]()
end

Doing the final touches on my game – thumbnails. I always forget how much I enjoy graphic design because I almost never do it.

11 Likes

Meh did some more renders

11 Likes

So, this is Quenty’s Finite with a different theme?

1 Like

HAHA YES!
I saw quite the potential in that game when it died down that @Quenty just went ahead and gave me a copy of the place. It’s always been on my bucket list to recreate it.

:open_mouth: This looks familiar. How did you get that model?

Magic

1 Like

Kind of weird, as pcall returns a string on error, but sure:

function isNumber(val)
   return pcall(function() return val+1 end) and not
      pcall(function() return #val end)
end