Part Visibility Flickering

Hi everyone,

Apologies if this is the wrong subtopic to post this in.

In my Obby minigame, a part that I frequently tween the position of flickers after a couple of tweens, where the part is a couple hundred studs away from the spawn point.

Here in the video, you can see where this happens, if you look carefully you will see the part eventually turns completely transparent.

My game has no code where the part turns transparent at any point throughout the match. The part immediately turns visible once a player touches the part.

The part sometimes flickers the visibility on and off, similarly to Z-fighting.

Here’s a video showing the bug:

I would greatly appreciate it if anyone could help and provide me with any possible solutions to prevent this from occurring anymore! :slight_smile:

1 Like

Try enabling streaming enabled or try disabling it. You can also try messing with a few of the setting with it. Seems to me to be some sort of roblox rendering bug.

1 Like

I have StreamingEnabled set to enabled, wouldn’t disabling it cause a hit in performance though?

1 Like

Streaming enabled takes the parts that aren’t visible to the player and unloads them and that’s most likely what is happening. So if you were to turn it off, all parts would be loaded in no matter if you could see them or not. This would impact performance memory wise. It really depends on how many parts you’ll have.

2 Likes

Unfortunately, even with StreamingEnabled disabled, the bug is persisting. I didn’t notice the bug occurring again until today.

Here’s more footage, with a better idea of what happens:

You can see that once I touch the part, it stops flickering.

EDIT: This occurred a couple hundred studs away from the Origin

1 Like

Yep, this is a pretty weird rendering bug, could you try just for testing purposes to place a floor underneath the platformers that are flickering out, like if there was going to be ground underneath, you can put it pretty far down try to bring it higher too until the flickering stops.

Other than that, if you have streaming disabled and there are no scripts affecting the part, this post should be move over to engine bugs.

1 Like

What’s your streaming radius set to? it looks like parts are loading in as your player gets closer. Maybe your radius is too small?

1 Like

It’s set to 64.

However, the recent video I sent was without using StreamingEnabled, so I’m not 100% sure it would affect it.

1 Like

I placed a part that was a few thousand studs long, around 50 studs under the platform and I couldn’t recreate the bug anymore.

Although I’m not 100% sure that prevented it, since the bug is not that common and I cannot manually recreate it.

The bug only occurs with the platform in the video too, so I think it has to do something with the part’s position being tweened frequently

1 Like

Alright, well if the bug continues after that fact then it’s probably some obscure bug with tweening, if that’s the case the use of lerp might be an alternative.

1 Like

I believe I may be experiencing a similar (?) issue. In my game, the player controls an egg-shaped part by moving it around with VectorForces. The player’s character is loaded and is anchored somewhere high up (necessary to enable mobile controls).

I was messing around with StreamingEnabled when I found out that for some reason, my egg flickers out of existence after it reaches a distance beyond approximately -1000 in the Z coordinate (not exactly -1000). I turned off StreamingEnabled in order to determine if this was the cause, but the problem persisted.

This video shows what I am experiencing, note that this is with StreamingEnabled turned off and with only one player in the game:

The part doesn’t ever disappear from the workspace either, it just seems to stop rendering for some reason. This flickering happens consistently at the same distance, regardless of the speed of the egg.

Any help or ideas on what could be causing this would be appreciated, thx

EDIT: I tried bringing the loaded character near the area that the flickering occurs to see if it was a proximity issue, but the flickering still occurs. I also tried moving much slower and it still occurs, always around the same area. Moving the character itself to that location however does not cause the character to flicker, so it may be a problem specifically with moving parts that do not have a humanoid, but I’m just guessing at that point.

2 Likes