I agree with this. You can have the most basic game (baseplate, any roblox starter template) and there will always be stuttering/lag
I am not quite sure about raycasting and āheartbeatā. That is something I would have to look into.
ok thx, but now i have another problem with second most laggy part of the game which is projectile system, it uses RunService heartbeat, i also pre-calculated that there shouldnāt be option to fire more than 1000 bullets per second, 2500-5000 in air, but it still lags when i spawn those rays
I tried parrarel luau, but itās worse than simply not using it
Also i use task.spawn when casting bullet
Is there anyway you can just minimize the bullets in the air? The less in the air/visible, the less lag you should have.
And if parallel luau is making your game worse, then just leave it out completely.
Maybe iāll show math that i did to calculate that
Players * Highest_Fire_Rate * Default_Lifespan
50 * 25 * 4 = 5000
Also, iāll use unreliable remote events to replicate bullets to client, if bullet will be too far, client will simply Parent it to nil
I think I can understand the numbers but can you explain what the 50, 25, and 4 represent?
50 is max players cap, i donāt think server would have it every time, so i aim at 30-50, probably more on private servers or big battles
25 Is how many bullets fastest weapon can fire per second, i donāt think that many players will use it due to how much ammo it requires, also probably make it expensive, so most of the time player will fire 1-10 bullets per second
4 is default lifespan for most projectiles, i plan on making them fast, like 50 studs per second or even 100, So 4 should be good for most projectiles
I donāt get why you need to like fire remote event each frame if the bullet is pre calculated
It isnāt, i pre-calculated maximum possible number of bullets in the air
Bullet itself uses heartbeat, also not remote event but unreliable remote event
I just donāt understand why you need to gives the position the bullet each frames. If you give the force and the direction when you create it Iām sure you can determine the position of the bullet on the client
I donāt do that, because i will have to calculate bullet twice, which would be very costly, even if on client, this is why i think sending unreliable remotes is better solution
So what are you sending each frames ?
For bullet visuals, i send Id of bullet and position, i realized i can send position as Vector3Int16 to reduce itās size by half
I feel like you are overcomplicating the process.
i feel that there might be 5000 bullets in the air at one points, of course itās unlikely, but still there is possibility, and i donāt want to make the game lag a lot
As I and @26mmiller said, youāre doing something wrong if you are firing every frames a Unreliable remote event for visuals. I would just make the calculation of position at FIRST frame and give to clients that, bullet speed,bullet directionā¦Like that you could even make client prediction
Iāve decided to change a lot of stuff, and cast bullets on client to reduce server load and network load, sending only 2 remotes with number and a vector3