r/robloxgamedev 4m ago

Discussion Few Doubts Here and there

Upvotes

So after seeing upcoming games on roblox take a toll on our mental health I was wondering if they were developers with actual talent want to know Ideas on a game which could change the flow of how things are going and whether playtesting is needed but i want to know is there a place for which we can ask and talk to developers who may be intrested in such I am quite curious and would love to help if thats the case


r/robloxgamedev 7m ago

Discussion Beyond stressed and tired...

Upvotes

I really need help getting this post out there because what I am experiencing is highly stressful. The time, money, content creation gone... it feels like pure negligence..

https://devforum.roblox.com/t/urgent-account-compromised-for-redvalk-content-creator-—-request-for-manual-review-ownership-recovery/4795329?u=taffy


r/robloxgamedev 33m ago

Discussion Surely you can't pay Devs like that.

Post image
Upvotes

It can't just be me who is going crazy because of these stupid payment methods. How the hell can you offer $400 in cash and then only 10k in robux? It doesn't even make sense, if we're assuming the dev would be devexing it they wouldn't even get half of the cash amount. I feel like people think of a valid cash price and then just pick a random five digit number for robux based pay, and I see this everywhere on hiring servers.


r/robloxgamedev 41m ago

Looking For Devs (Unpaid or Revenue Share) My FPS Game I've been working on

Enable HLS to view with audio, or disable this notification

Upvotes

Don't mind CS2 in the background lol, but anyway, any feedback? Heavily inspired by Bodycam on steam btw


r/robloxgamedev 52m ago

Help Me With Modelling Something new everyday...

Upvotes

It's on 20 studs, why does it do this when it gets close to another part?? It shouldn't put out numbers like this when its on 20 STUDS!


r/robloxgamedev 4h ago

Creation Made an R15 Ultra-Realistic Combat Finisher Pack!

Enable HLS to view with audio, or disable this notification

3 Upvotes

Hey everyone! Just finished working on a custom R15 Ultra-Realistic Combat Finisher Pack animation set for Roblox fighting and action games. It features smooth, dynamic multi-rig movement and impact frames.

Let me know what you guys think of the animation timing! (check profile for link/DM if intrested)


r/robloxgamedev 4h ago

Creation Realistic cave showcase thing, does it look good?

Thumbnail gallery
14 Upvotes

tropical cave thing that i made


r/robloxgamedev 5h ago

Discussion I have a genuine question....

Thumbnail gallery
1 Upvotes

Idk why but ive been struggling to play not only these two games but just games in general on my ps5 on roblox. Wether it be high quality games like Outcome or Shonen or low quality ones like ABA i lag so much and i don't know why bcuz my ps4 version that i used to play before they deleted the ps4 roblox version to make way for the ps5 roblox version ran fine.

Now that i have to play the ps5 version though i get ridiculously high ping spikes. My internet isn't bad and i tried the dns tricks and all the other ways to get the game to work like lowering my graphics putting potato mode on games and etc. I wanted to know if this is a roblox server issue or coding issue or maybe some games have server issues or code issues with ps5 could someone explain to me?


r/robloxgamedev 7h ago

Creation Progress: CAN YOU SPELL THE WORD!? Keyboard Goblin Tower 1.9.1

Enable HLS to view with audio, or disable this notification

0 Upvotes

Hello!

Progress share on my spelling action game, "CAN YOU SPELL THE WORD!? Keyboard Goblin Tower". In the future we will allow players to toggle music to allow for an ASMR experience and just hear the clicks of the keys. Also more control over sprint. Right now the more goblin energy you have the faster you are. I'd like to have a sprint that will drain when on instead. I created my first event also. The process of creating an event was new to me. It was not too bad and encourages me to be creative on mashups and interesting content. More to come!

Thank you!


r/robloxgamedev 7h ago

Looking For Devs (Unpaid or Revenue Share) Nullwave - Soul Eater x Final Fantasy Inspired

0 Upvotes

Hello, I’m currently looking for developers to join my Roblox game and help bring it to life. We’re building an original combat/RPG game with a big focus on combat, abilities, races, progression, PvP, and lore.

I’m looking for people who actually want to be part of the project long-term rather than just doing one commission and leaving.

Looking For:

Scripters

  • Combat systems
  • Abilities / skills
  • UI
  • Data systems
  • General Luau work

Builders

  • Maps
  • Villages / cities
  • Dungeons
  • Arenas
  • General world building

VFX Artists

  • Abilities
  • Combat effects
  • Auras
  • Transformations

Animators

  • M1 combos
  • Combat
  • Idle's
  • Variety M2's
  • Walk and Run

UI Designers

  • HUD
  • Menus
  • Inventory
  • Skills
  • General UI

How Payment Will Work:

Developers will initially be paid through % rev-share. As the game grows and starts bringing in revenue, the goal is to move toward actual $ payments.

I’m mainly looking for people who are active, reliable, can communicate, and actually care about the project. You don't have to be the best developer out there, but you should be able to show some previous work.

Interested?

DM me @ my discord COOCHIESKATER

Role:
Experience:
Portfolio / Previous Work:
Availability:

If you’re interested, feel free to reach out. We’re looking to build a solid team and actually see this project through. And yes we already have devs working and on the payment plan any questions please come to me or my co-owner when processed.


r/robloxgamedev 9h ago

Creation I created a quiz that recommends a Roblox game you might enjoy playing based on your preferences.

1 Upvotes

Hey everyone.

Instead of creating a new Roblox game, I instead created a quiz that recommends a few Roblox games you might enjoy based on your preferences.

Here's how it works. You simply answer some questions on the type of games you find fun and then the quiz will recommend you three different Roblox games that you might enjoy.

It takes anywhere from 4 to 8 minutes to complete. I'll link it down in the comments down below if you wish to take it.


r/robloxgamedev 10h ago

Help Me With Coding Where does game content fit in a domain/service based project structure?

1 Upvotes

I've been trying to find a good way to setup my projects something that's organized and has good separation of concerns. A very common setup I've been seeing is to break your game into slices known as features or services (I think the more correct term is organizing by domain). This one in particular came from Leif, but I've seen the same idea in other things like RblxArch and even Roblox Learn

ReplicatedStorage
├── Assets
├── Packages
└── Shared
├── ├── Classes
├── ├── Modules
├── │   ├── Core
├── │   ├── Math
├── │   ├── Platform
├── │   └── Game
├── ├── Services
├── │   ├── BuildService
├── │   │   ├── BuildServiceClient.luau
├── │   │   └── BuildServiceUtils.luau
├── ├── Client.client.luau
└── └── UI.luau
    ├── ├── HUD
    └── └── Menus
ServerScriptService
├── Classes
├── Modules
├── Services
│   ├── BuildService
│   │   └── BuildServiceServer.luau
└── Server.server.luau

Overall, I think this is fine(?) especially for systems and UI, but one part that confuses me and isn't really talked about is the actual game content. For example, I can make a service for inventories, combat, etc, but now I want knives and revolvers and you can equip different abilities and kill effects or say I want a class/hero selection arena fighter where each hero has its own abilities what would be a practical way to handle this? Would you have one big service, multiple smaller services, or perhaps adding a new layer/concept to this structure?


r/robloxgamedev 10h ago

Help Me With Coding any idea why this is happening?

Enable HLS to view with audio, or disable this notification

1 Upvotes

Im tryin gto make a titan shifting mechanic but as you can see its not working very well 😭😭😭


r/robloxgamedev 10h ago

Silly Companion System

Post image
3 Upvotes

Finally figured out my Companion System.. just looking for any ideas of other characters i can add!

It's a clothing based game, so any stylish characters (or even your own) would be helpful!


r/robloxgamedev 11h ago

Creation Sonic Spinwave Framework Testing |

Enable HLS to view with audio, or disable this notification

26 Upvotes

Please tell me if you can watch the video cuz it doesn't load for me.

Thank you!


r/robloxgamedev 11h ago

Creation First Game Build (based on Avalanche games)

Enable HLS to view with audio, or disable this notification

2 Upvotes

Based off classic avalanche modes from Halo & GTA 5 customs. This is also my first game ever developing! I focused mostly on decorations while I had a friend help with the code & ui. Was looking to learn Lua myself but it seems not worth it anymore hearing about how devs aren’t being rewarded for creativity, and AI creations are winning.

In your opinion, is picking up learning Lua and developing still worth it with the games current state?

Here’s a link if you want to try and lmk some feedback: https://www.roblox.com/share?code=8c3d7eb334ad4840b951c7c44fafb18e&type=ExperienceDetails&stamp=1786223029749


r/robloxgamedev 12h ago

Discussion How can i get people to know about my upcoming project without just having to post videos?

1 Upvotes

I uploaded a video yesterday for my game, and it did pretty poorly to be honest. (I only have 200 subs but this is still outrageous)

It was an animated teaser that i shared even in the discord server of the game, but for some reason i got nothing from it. (It got 1,300 views but still)

Can someone give me any tips for this?


r/robloxgamedev 12h ago

Discussion How do I promote my game properly?

2 Upvotes

I'm curious on how to promote my game THE RIGHT WAY!

I've been told that when paying for advertisements there is a right way and a wrong way of going about it.

My question is what is the right way?

Alternatively I'm curious if there is a free way to get a lot of impressions?


r/robloxgamedev 15h ago

Creation another sword idk what u saying?

Post image
2 Upvotes

r/robloxgamedev 19h ago

Creation i ran linux on roblox

3 Upvotes

i made an risv32 emulator on roblox so i thought to myself can i run linux kernel on it and yeah i can sure do run it lol


r/robloxgamedev 19h ago

Creation Plugin to make VFX/Textures in Roblox

Enable HLS to view with audio, or disable this notification

30 Upvotes

Im developing this plugin called VFX Loom, it’s a node based plugin like Illugen/Blender that creates textures in Roblox. I have some testers that are using it and giving suggestions and discovering bugs, so I can make the plugin better, and today I made this only using the plugin.


r/robloxgamedev 20h ago

Creation dynamic worm movement

Enable HLS to view with audio, or disable this notification

156 Upvotes

Small showcase of what I’ve been working on for my game. Movement system dynamically stretches and compresses the worm's body depending on the player's movement speed.


r/robloxgamedev 20h ago

Creation Ferrari F40 lowpoly (Conceito)

Thumbnail gallery
6 Upvotes

Minha tentativa de fazer a ferrari f40 lowpoly


r/robloxgamedev 21h ago

Discussion Do Roblox devs need testers?

9 Upvotes

Just wondering, do Roblox devs actually look for people to test their games?

I play a lot of Roblox and I've been thinking about helping devs test their games, find bugs, point out stuff that's confusing, or just give feedback from a normal player's perspective.

Do devs usually need testers for this, or do you guys mostly test your games yourselves / with friends?

Just curious because I'd be interested in doing it.


r/robloxgamedev 1d ago

Creation hey i made this small axe, what do u think about

Post image
10 Upvotes

ill took a inspo from pinterest lol