Any way to remove the skybox barrier?

I have a game mode in mind where I would like quite a bit of verticality and it seems that I hit the skybox far too easily for my liking. Is there any way to remove it/alter it/ignore it by the player?

the only way to do this is to temporarily disable the players collision hitbox.
Example (Code i made a while ago): https://workshop.codes/custom-collision

the issue is this code takes ALL of the Server Load unless you make it run slower which would make the collisions less responsive and might result in lag where players walk partly into walls then snap back.

if i remember correctly it even crashs with just 8-10 players .

so to answer your question, No… not unless you dont plan on using the workshop & have less than 8 Players.

1 Like

The mode I’m looking to make is coincidentally made as a 1 v 1 with 1 bot player that doesn’t do anything pretty much so if what you’re saying is true then that should be very much safe. Though I think taking away the collision hitbox might get players to fall behind walls and doesn’t just eliminate the skybox, does it?

removing the hitbox (depending on a Boolean) will remove ALL environment collisions including invisible walls (excluding the floor if Boolean if false).

the mode i linked that i made, does its best to recreate what the hero’s bounding box might look like to detect whats a real environment object and whats an invisible wall.

when no object in within the bounding box it’ll disable the players collision without disabling the floor. with update every frame its instant so there is no lag where players go partly into walls.
(unless the player is losing their connection to the whole server)

if your mode is 1-2 player it would probably work with no issue. but i’ll need to go update the mode first, as its missing the bounding box for Venture.
(shouldn’t take long, its probably just the exact same of all the other support/DPS)

Edit: its now been updated, Venture is of the few with a slightly larger hitbox then a normal hero.

(in my bounding box’s)
Normal Hero Width is 0.55.
Venture Hero Width is 0.75.

1 Like

Your work is appreciated, after all this time, thank you.