What are you working on currently? (2022)

Katana Model.

17 Likes

Okay so i’ve been starting that project of making a Realistic Humanoid. For now , it seems a bit good


I didn’t add the torso lol (I’m working on that)

13 Likes

That litterly just scared me lol. Nice work tho!

2 Likes

I love this style of build. Any tips for creating this modern-day classic type of build?

1 Like

I have wanted to make an inventory system but I have no idea how to start, or how to do the sort of cell manipulation or representation required. What would you recommend?

Made this post

Medieval building:




7 Likes

I don’t think I would be much of a help.

There’s many different ways to create an inventory, so I’ll just give you general tips that can be applied to any system you want to make. First off, I recommend with keeping the inventory structure in Lua, then later reading that data to display in your GUI. Keep your inventory data and GUI separate!

If you want the short version of the following information, scroll all the way to the bottom.


Cell storage: Each cell is just another table in a table inside of a ModuleScript. I’ll use this as an example:

local inventory = {
  [1] = {
    ["ID"] = 1,
    ["Quantity"] = 831,
  },

  [5] = {
    ["ID"] = 2,
    ["Quantity"] = 43,
  }
}

-- usage: itemInformation[Item ID]
local itemInformation = {
  [1] = {Other useful info}
}

local firstItemSlot = inventory[1]
local firstItemInfo = itemInformation[firstItemSlot.ID] -- item info

At slot 1, we can get the item’s information through its ID, as well as the quantity of that item in the slot. With the ID, we can get other information about the item, such as the max stack, in a different table.

You can manipulate the data afterwards, which is what I believe is the most complex and specific part.


Manipulation: This part requires knowledge of how to manipulate data in a table. For example, if you want to swap slots, here is what you would do…

local function swapSlots(firstIndex: number, secondIndex: number)
  -- Not optimized at all, just a general idea
  -- First we get their references
  local firstItem = inventory[firstIndex]
  local secondItem = inventory[secondIndex]

  -- Now, move them
  inventory[secondIndex] = firstItem
  inventory[firstIndex] = secondItem
end

Representation: Whenever a slot is modified, we should tell the inventory GUI that it needs to update those slots. How it’s represented depends on you.


Networking: I haven’t gotten to this part yet, but what I’m doing is manipulating the inventory through the client and not replicating that to the server. You can do sanity checks on the server, such as if it’s impossible for an item to be picked up or if the item is even in the inventory.


TL;DR

  1. Store your inventory as a table
  2. Each item in your inventory should have an ID associated with it
  3. Manipulation of the inventory is just manipulating a table

And as a warning, working on the inventory alone took around 10 hours for me.

2 Likes

Polys: 3,780
Verts: 3,821

16 Likes

The 2D games continue!!

This one is a little less focused than the others I’m working on. It’s just going to be a simple shoot em’ up style boss fight. I purposely made it progressively more difficult as the boss switches through different phases, when it’s health deteriorates.
It’s not easy, can’t even beat it myself :huh:.

Also added a leaderboard for completion times.

Try it here

24 Likes

Some blender models I made today :smiley:
I still need some ideas. If you got some, comment them. I would be really happy!

10 Likes

A sword fight game! So far, it’s not working out, but I’m almost there!

How long did it take to model/texture those cars?

Not really working on this currently, but thought I’d share anyway. And yes, I am obsessed with Sci-Fi lol

Both of these are unfinished

40 Likes

Not really sure lol, one thing I’d say though is to add small details to make it look a lot better

There’s still more to add??

This is really good bro, nice job.

2 Likes

This: Sword Fighting on the Plates of Fire I - Roblox

1 Like

Yup! Lot’s more lol

Thanks man! Means a lot. :slight_smile:

1 Like

I can’t believe I missed this years. This year so far, I’ve been working on a lot of non studio related things, such as playing around with clothing.

1 Like

it looks like a monster straight out of the Backrooms. Good job making it scary!

Here’s a section of the Shibuya Crossing in Tokyo Japan, one of many maps in development.

I’m trying to replicate it for my FPS game! Took my 1.5 days using 290 parts, custom textures using photoshop

What yall think? ;D

Reference:

21 Likes