Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
map_making:map_making_tutorial [2020/08/01 00:53] vmsize [Making a booster] |
map_making:map_making_tutorial [2021/02/23 18:25] (current) fiveman1 typo |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | =====Map Making Tutorial/ | + | ======Map Making Tutorial/ |
- | ==== Introduction ==== | + | ===== Introduction |
Line 10: | Line 10: | ||
You will have to test the maps using [[https:// | You will have to test the maps using [[https:// | ||
- | ---- | + | ===== The basics |
- | + | ||
- | ==== The basics ==== | + | |
To start, you will need: | To start, you will need: | ||
Line 27: | Line 25: | ||
To add a trigger, or a part that resets you when you touch it, name a part '' | To add a trigger, or a part that resets you when you touch it, name a part '' | ||
- | ---- | + | ==== Note about Spawns and Triggers |
- | + | ||
- | === Note about Spawns and Triggers === | + | |
Line 42: | Line 38: | ||
Finally, Triggers will not send you backwards. If your current spawn is '' | Finally, Triggers will not send you backwards. If your current spawn is '' | ||
- | ---- | + | ===== Platforms and Surfs ===== |
- | + | ||
- | ==== Platforms and Surfs ==== | + | |
Next for a Bhop map, you can start by adding '' | Next for a Bhop map, you can start by adding '' | ||
Line 54: | Line 48: | ||
If you want to create a teleport between two sections, you can do so using the '' | If you want to create a teleport between two sections, you can do so using the '' | ||
- | ---- | ||
- | ==== How to test and submit your map ==== | + | ===== How to test and submit your map ===== |
- | First, upload your map model to Roblox. Do this by right clicking the model and selection | + | First, upload your map model to Roblox. Do this by right clicking the model and selecting |
Next, you will have to join the [[http:// | Next, you will have to join the [[http:// | ||
Line 70: | Line 63: | ||
//Note: The model cannot update while you are inside maptest. If you want to test a new version you will have to make a new model and give it to the bot or create a new server using the ''/ | //Note: The model cannot update while you are inside maptest. If you want to test a new version you will have to make a new model and give it to the bot or create a new server using the ''/ | ||
- | ---- | + | ===== Lighting / Why does my map look different in maptest? |
- | + | ||
- | ==== Lighting / Why does my map look different in maptest? ==== | + | |
Read the [[map making: | Read the [[map making: | ||
- | ---- | + | ===== Making a booster |
- | + | ||
- | ==== Making a booster ==== | + | |
Boosters do not have special names. To make a booster you simply change the Velocity property of a normal part or a '' | Boosters do not have special names. To make a booster you simply change the Velocity property of a normal part or a '' | ||
Line 101: | Line 90: | ||
</ | </ | ||
- | ---- | + | ===== Caveats and things to keep in mind ===== |
- | + | ||
- | ==== Caveats and things to keep in mind ==== | + | |
Unions and meshes do not have normal collision. In bhop/surf they will simply have a box for collision. It is the same box you see in Studio when you select a union/mesh and highlight it. | Unions and meshes do not have normal collision. In bhop/surf they will simply have a box for collision. It is the same box you see in Studio when you select a union/mesh and highlight it. | ||
- | To work around this you can create your own collision manually by making individual parts and making them invisible, and making the original union/mesh CanCollide false.. | + | To work around this you can create your own collision manually by making individual parts and making them invisible, and making the original union/mesh CanCollide false. |
Avoid having surfaces on the same level as another and directly adjacent to eachother. This greatly increased the chances of a player accidentally edge boosting on the part and losing lots of their speed. | Avoid having surfaces on the same level as another and directly adjacent to eachother. This greatly increased the chances of a player accidentally edge boosting on the part and losing lots of their speed. | ||
If you need to have this, it is recommended to make the parts CanCollide false, and creating a single invisible part that outlines the parts inside. This is common practice for certain platform designs. | If you need to have this, it is recommended to make the parts CanCollide false, and creating a single invisible part that outlines the parts inside. This is common practice for certain platform designs. | ||
- | ---- | ||
- | ==== Full map part list ==== | + | ===== Full map part list ===== |
* '' | * '' | ||
Line 130: | Line 116: | ||
* Parts that reset you. The # corresponds to the Spawn they are meant to send you to. | * Parts that reset you. The # corresponds to the Spawn they are meant to send you to. | ||
* '' | * '' | ||
- | * Same as above but will send you backwards. | + | * Same as above but can send you backwards. |
* '' | * '' | ||
- | * Parts that teleport you forwards to a new Spawn. The # corresponds to the given Spawn. | + | * Parts that teleport you forwards to a new Spawn. The # corresponds to the given Spawn. Unlike Triggers these will not reset you to the start with autorestart enabled. |
* '' | * '' | ||
* Same as above but can send you backwards. | * Same as above but can send you backwards. | ||
Line 142: | Line 128: | ||
* The # is the amount of times you are allowed to jump on the part. Jumping on it consecutively more times than the # will reset you. | * The # is the amount of times you are allowed to jump on the part. Jumping on it consecutively more times than the # will reset you. | ||
* '' | * '' | ||
- | * WormholeIn# will send you to the corresponding WormHoleOut# | + | * WormholeIn# will send you to the corresponding WormHoleOut# |
* '' | * '' | ||
* Accelerates players in a given direction/ | * Accelerates players in a given direction/ | ||
Line 148: | Line 134: | ||
* When inside you can swim and has custom swimming physics. Adjust the Velocity property to give it a current. Adjust the CustomPhysicalProperties Density and Friction to adjust the fluid density and drag coefficient respectively (these are 1.0 and 0.1 by default). Should always be CanCollide false. | * When inside you can swim and has custom swimming physics. Adjust the Velocity property to give it a current. Adjust the CustomPhysicalProperties Density and Friction to adjust the fluid density and drag coefficient respectively (these are 1.0 and 0.1 by default). Should always be CanCollide false. | ||
- | ---- | + | =====Resources===== |
- | + | ||
- | ====Resources==== | + | |
==Map Kits== | ==Map Kits== |