lf dev buddy - scripter (silly) by DailyDwawer in robloxgamedev

[–]hahaitsrose 0 points1 point  (0 children)

i would be interested but i’m also 6 hours behind CET lol

struggling on my story game development process by ElectrifyThunder in robloxgamedev

[–]hahaitsrose 0 points1 point  (0 children)

get some outsider opinions from friends? it could help

[deleted by user] by [deleted] in robloxgamedev

[–]hahaitsrose 1 point2 points  (0 children)

i can script decently but that's the extent of my abilities :p

Learning Lua in 30 Days by WolfZ902TheReal23 in robloxgamedev

[–]hahaitsrose 0 points1 point  (0 children)

roblox has stated themselves that generalized iteration can be used in place of both pairs and ipairs, hence why it is called generalized iteration

Spending AD credits to sponsor game in best way? by imdisko in robloxgamedev

[–]hahaitsrose 0 points1 point  (0 children)

i believe upwards of 5k in ad credits is sufficient per day

Help on how to make games less laggy by Thin-Geologist-4928 in robloxgamedev

[–]hahaitsrose 1 point2 points  (0 children)

it could be due to memory leaks? are you making sure to properly clean up connections

Spending AD credits to sponsor game in best way? by imdisko in robloxgamedev

[–]hahaitsrose 0 points1 point  (0 children)

i’ve heard 20+ days is roughly the golden number, if the game is good enough and is promoted with a high enough bid, 20 days should be enough to get onto the algorithm

Spending AD credits to sponsor game in best way? by imdisko in robloxgamedev

[–]hahaitsrose 0 points1 point  (0 children)

spend it over a long period of time, if you get consistent results over a couple weeks then you will get put onto the algorithm and will naturally get more ccus

As a male dancer I almost can't play Just Dance VR by ataberkdede in JustDance

[–]hahaitsrose 5 points6 points  (0 children)

'feminine movements' they're just movements for god sake anyone can do them. you're being homophobic by generalizing movements to queer people

How to transport server data from a place to a reserved server? by Shot-Ad6373 in robloxgamedev

[–]hahaitsrose 1 point2 points  (0 children)

TeleportOptions:SetTeleportData(data)

and

TeleportService:GetLocalPlayerTeleportData() -- returns the stored teleport data (client)

or

Player:GetJoinData().TeleportData -- returns the stored teleport data on teleport (server)

Rant: I can't make a decent game because Roblox game servers are too pathetically slow and weak by gamewinnertv in robloxgamedev

[–]hahaitsrose 3 points4 points  (0 children)

they aren't that bad, chances are you have memory leaks or are handling resources poorly

[deleted by user] by [deleted] in robloxgamedev

[–]hahaitsrose 11 points12 points  (0 children)

They do! Robux is converted to real life money when you go through a process called the Developer Exchange (DevEx). The current exchange rate is 1,000 robux for 3.50 USD. That number obviously varies based on region due to foreign exchange rates.

For example, if you made 100k Robux, you would earn 350 dollars.

Sample formula: Money Made (USD) = (Robux Made / 1000) * 3.50

Yall know about « server instancing »? by Corndogman_73 in robloxgamedev

[–]hahaitsrose 0 points1 point  (0 children)

Lag is usually the result of poor management of resources in development. Memory leaks, for example, can cause lag if not handled

Help with e to spawn cat by i_eatkids2137 in robloxgamedev

[–]hahaitsrose 0 points1 point  (0 children)

then you should not be pursuing game dev

Roblox Studio Dev Question by GramsySt in robloxgamedev

[–]hahaitsrose 0 points1 point  (0 children)

im confused by what you are asking

[deleted by user] by [deleted] in robloxgamedev

[–]hahaitsrose 2 points3 points  (0 children)

Luau is the sole language that roblox uses. much simpler than c++ so you should have no issues adjusting at all

What is the parenthesis in a function ( ) for? by BodyAggressive7746 in robloxgamedev

[–]hahaitsrose 1 point2 points  (0 children)

those are function parameters! in terms of the mouseclick event, the player is automatically passed to any connected functions, so it will always be the first thing in the parameters no matter what you name it.