EasyForTheWin777 0 Report post Posted June 19, 2020 Hi everyone! I uh... Don't know how to script. I'm making a game called Easy's (me) Epic Exploration. It's about going through portals to different parts of earth and trying to find a hidden flag. I have no idea how to make teleporters. Bit of help please...? Thanks in advance, and good luck with your games or whatever you make! PS: Not sure if this is scripting or lua or any of that, I really am an amateur. I honestly have no idea what's going on. Quote Share this post Link to post Share on other sites
EasyForTheWin777 0 Report post Posted June 19, 2020 Oh, right! Almost forgot! My username is my roblox username. Quote Share this post Link to post Share on other sites
kom297 1 Report post Posted June 30, 2020 Do you still need help? If so i'd be happy to help you out Quote Share this post Link to post Share on other sites
EasyForTheWin777 0 Report post Posted August 2, 2020 Ah! Yes. Of course I did forget to mention that I don't have anything to offer. I kinda left this and forgot about it... Quote Share this post Link to post Share on other sites
Akita 1 Report post Posted August 2, 2020 My basic answer to how to to make a portal is to have a script check for stuff touching the part (Portal). Then, check for a humanoid by doing OtherPart.Parent:FindFirstChild("Humanoid") in an if statement. If there is a Humanoid, change the HumanoidRootPart's position in the Character to the portal's destination. Sorry if you don't understand but you can break down the parts and try to learn how to make it yourself. Quote Share this post Link to post Share on other sites
Aviation_Joe 0 Report post Posted August 8, 2020 Basically here is the main code local TouchPart = script.Parent local TpPart = path to teleport part TouchPart.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") then hit.Parent.HumanoidRootPart.CFrame = TpPart.CFrame end end) Quote Share this post Link to post Share on other sites
Johnapolitan 1 Report post Posted September 2, 2020 Hello, @EasyForTheWin777! I highly recommend learning to script before venturing into singular game development. What if the game does well and player's want updates? Do you have the skills needed to provide them? AlvinBlox talks about this in this video. Quote Share this post Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.