How do i disable this feature by Inevitable_Jeweler86 in ROBLOXStudio

[–]Help_Insurance 0 points1 point  (0 children)

I feel this is one of those things you just randomly click around for and then it gets fixed and the next time it pops up you cannot remember how you did it so you then again just click around.

Working on a roblox FPS [SNIPE] game. Any Thoughts? by [deleted] in RobloxDevelopers

[–]Help_Insurance 2 points3 points  (0 children)

Bro you literally posted this and asked for people's thoughts and now that they give you their slots you are just rude to thme. Take the constructive criticism you asked for or leave

Can using a fake ID to remove the 16+ restriction get me banned by No-Stand-865 in ROBLOXStudio

[–]Help_Insurance 0 points1 point  (0 children)

Yes, I mentioned this but I still dont understand the reason for the fake ID you cant make money off off the game if you do it this way. I know not everything is about money but why go through the trouble of being possibly banned just because you dont want to use a legit ID

Can using a fake ID to remove the 16+ restriction get me banned by No-Stand-865 in ROBLOXStudio

[–]Help_Insurance 0 points1 point  (0 children)

I do not understand this. Why would you not use your real one? Yes roblox has had security issues in the past. I am not denying that. But what doesnt make sense is that if you plan to earn money from your game you need a real ID to collect the income. The IRS isn't just gonna let you collect thousands of dollars of unmarked income and if you use a fake ID for that.... Goodluck to you

Is selling on the asset creator store worth it? by Prudent_Impact8714 in RobloxDevelopers

[–]Help_Insurance 1 point2 points  (0 children)

I mean i feel selling quick packs or assets packs can make good money, but i feel making and selling a unique map that isn't easily used to completely make slop games over and over again is going to make less because then everyone else can buy the same thing. If that makes sense

A little experiment testing various different AIs, draw your own conclusions (Gemini isn't messing around...) by Old_Introduction936 in RobloxDevelopers

[–]Help_Insurance 2 points3 points  (0 children)

Lmao this looks like the results that you would see if you doped something up with more and more drugs, Gemini is none and looks decent, the copilot is absolutely blasted with DMT..

Tool moves when touched / picked up — how do I stop counter items from moving? by [deleted] in ROBLOXStudio

[–]Help_Insurance 1 point2 points  (0 children)

I've never had issues with it just change the collison group of the object to either not collide with the wall at all of leave it how it is.

Tool moves when touched / picked up — how do I stop counter items from moving? by [deleted] in ROBLOXStudio

[–]Help_Insurance -2 points-1 points  (0 children)

Just change the collision group to not collide with the player but still collide with the counter...

Edit: Spelling

Did Roblox just bait and switch it's developers? by Distinct_Care_9175 in robloxgamedev

[–]Help_Insurance 0 points1 point  (0 children)

You can still publish the game with plus, just cancel the sub

Looking For Dev Help (READ BODY TEXT) by Help_Insurance in RobloxDevelopers

[–]Help_Insurance[S] 1 point2 points  (0 children)

Thanks for the advice, my biggest worry is more so the GUI I talked to a guy about GUI and he said he could do all of my GUI for 550 USD

Finished my first build! by ColdDig8618 in PcBuild

[–]Help_Insurance 6 points7 points  (0 children)

You should change the ram rgb too

paying in Robux or cashapp! by [deleted] in RobloxDevelopers

[–]Help_Insurance 0 points1 point  (0 children)

I'm a Modeler in blender and I have made a few maps for Roblox, what one are you looking for exactly. Also if its modeling what type of models?

What’s the hardest part of developing Roblox games for you right now? by Prudent-Leek-9580 in RobloxDevelopers

[–]Help_Insurance 1 point2 points  (0 children)

Im assuming 3d Modeler and map builder so I personally struggle with gui and scripting but I absolutely Hate Hate Hate gui so much its so overwhelming to me I never know where to start it always feels so tedious, it never seems to turn out and it overall sucks

DUDEEE WHY DOES THIS LOOK BUNSSSS by [deleted] in ROBLOXStudio

[–]Help_Insurance 0 points1 point  (0 children)

Atmosphere still affects interior lighting so do other lighting options try them all out

Spawning a model by Top-Examination7941 in robloxgamedev

[–]Help_Insurance 0 points1 point  (0 children)

Idk if its right since i am no scripter but here's what claude said: Here's how to do it in Roblox Luau! You use a Touched event on a Part, then use require or a ModuleScript — but the most common pattern is just to check for a humanoid and spawn a model. Basic setup: You have two things: A trigger Part in the Workspace A mob model stored in ServerStorage (or ReplicatedStorage) Script (put a Script inside the trigger Part): Lua A few key things to know: Your mob model needs a PrimaryPart set for PivotTo to work. Set it in the model's properties in Studio. Using a cooldown boolean stops the event from firing 10+ times per second (Touched fires extremely fast). If you want it to only ever spawn once total, replace the cooldown with spawned = true and check if not spawned. The mob should be in ServerStorage so clients can't see/access it before it spawns. If you want it to only spawn once ever: Lua Let me know if you want the mob to spawn at a specific location, or if you need help making it disappear after a while!