Making a portal effect

Hi, i’m trying to do a portal effect like the game portal.
i know that EgoMoose did it but i’m trying to make a better one
see how is the project: portal rendering demo - Roblox
Asset info:
Version: 0.6
render parts that are in the front side of the portal(it’s ok)
object cloning(needs to be better)
object teleportation(good)
better player teleportation with better momentum(now suports infinite fall without walls collision(you will not go to the void))
}
thanks{
EgoMoose: using his module just for the viewportframe thing
}
I hope that we create a good portal effect together.
note:Please do not use the projects posted here without crediting the creators

3 Likes

if you decide to make a post on the devforum, you wouldn’t wanna expect people to make entire scripts for you, just saying.

I do not want people to do scripts for me, i’m just trying to make a better system so other people can use it

Wish I had more time to mess with that … pretty nice work.

1 Like

note: while i didn’t update the system, if you want portals with different sizes do this:
(script is in the viewportwindow)

[
function SurfSizechec(surfacesize)
if surfacesize.Y > surfacesize.X then
surfacesize = Vector2.new(surfacesize.Y,surfacesize.Y)
elseif surfacesize.Y < surfacesize.X then
surfacesize = Vector2.new(surfacesize.X,surfacesize.X)
end
return surfacesize
end

  • then in the viewportwindow:Render() make that SurfaceSize = SurfSizechec(SurfaceSize)
    Edit:

    If you didn’t understant, don’t know how to code or you are just lazy please don’t worry.
    An update coming soon will have that

Sorry for no updates, my computer broke so i can’t use the roblox studio but when my computer get back i will make an update.
Things in the update:
Version:0.7
(Some features might be transfered to the paid version)
-Little improvement on the teleportation.
-Better rendering(with optization).
-Portal Size doesn’t need to be the same.
-(maybe coming) character changes size.
-(more chance to come) make more than 1 portal.
-(maybe coming) see your character in the portals.
-(medium to low chances to come) multiplayer.
-function on the Render module to help with raycast through portals.
-(not sure)better object cloning.

!WARNING!
The portal asset will be updated with low frequency because of a paid version under development.

Info about the paid version(coming soon):
-more updates with more feature.
-more bug fixes.
-better scripts.
-credit if you want (but if you do you will be helping me a lot on the development).
-early access to new features from the free asset.

Update!
Version: 0.7
render parts that are in the front side of the portal(ok)
object cloning(ok)
object teleportation(good)
better player teleportation with better momentum(now suports infinite fall without walls collision(you will not go to the void))
}