What are you working on currently? (2020)

you need to released this demo place to the world. I honestly would play this 24/7.

1 Like

I made cool first-person arms.

4 Likes

28 Likes

Wow, this would really speed up building! Any chance you’re planning to make this open source?

Yeah, it’s going to be a plugin eventually. See my progress here :upside_down_face:

7 Likes

Now that I’m less bogged down by school, decided to keep working on a couple months old open source project of mine, an easier HTTP library for Roblox based on Python’s Requests.
Some example code using it:

local r = http.get("https://api.github.com/orgs/Roblox/repos")

print(r.status_code, r.message)
-- 200 OK

repos = r:json()
print(#repos)
-- 30

print(r.content_type)
-- application/json
print(r.encoding)
-- utf-8
print(r.headers["x-ratelimit-remaining"])
-- 59

Features:

  • Sessions with Cookie Persistence
  • Default Headers, URL prefixes
  • Automatic Query Strings
  • JSON Body Encoding, JSON Response Decoding
  • Elegant Key/Value Cookies
  • Domain/Path filters
  • Multipart File Encoding and Upload
  • Global/Per-Session Ratelimiting
  • Functions for every HTTP verb

DevForum Thread

Documentation/download:

9 Likes

Working on a Wipeout Minigame - current map is set in the Nile river

just wanted to display some FX in this small clip (I just don’t have any real good recorders atm so there’s a minor syncing issue with the audio)

35 Likes

dang throwback to the OG Wipeout game lol
This looks good!

5 Likes

Returning to pianos. This time I have improved in working with dynamics.

6 Likes

I’m recreating “Walkabout Waters” from Aquatica Orlando:

Yeah, this might take a while… :sweat_smile:

21 Likes

7 Likes

That is going to take a long time… Well good luck. :sweat_smile: :sweat_smile:

1 Like

Working on a couple of ugc concepts!

4 Likes

Added trees and biomes to my island generator!



And a nice button that fits in with the new topbar

21 Likes

Been programming a sushi restaurant base game with @ahpplesauce, just showing off some of the progress.

Here some of what @ahpplesauce has done for building


13 Likes

I challenged myself to make a game in a few hours.

A bit of physics, raycasting, datastores, procedural gen, dynamic loading/unloading, and hours later… I present to you- Bounce!

Play here:
https://www.roblox.com/games/5054255967/Bounce

44 Likes

Cool, wish i could do such things! Currently not in my skill set.
Looks Nice!

2 Likes

After a while of being away due to college, I returned and made a couple of working grills. A nice little project with clientside functionality.

9 Likes

Embarassed to ask this, but, what in the world is dynamic loading sensei

dy·nam·ic
/dīˈnamik/
adjective
1.1.
(of a process or system) characterized by constant change, activity, or progress.

As the ball moves higher, it procedurally generates more blocks, and unloads the blocks that are now well below the camera.

4 Likes