Tutorials


The owner of Skyrunner Games has a YouTube channel for game development on Roblox. If you prefer learning through written text, check out the tutorials below!

How to Make a Kill Brick



Once you load up Roblox Studio, click on the Part icon. If you don't see this icon, make sure you are on the Home tab. Next, we're going to make the part actually look like a kill brick. To do this, modify the following properties:





Read more

How to Make a Game Pass



To create a game pass on Roblox, first go to create.roblox.com. Next, click on the game you want to add the game pass to. On the sidebar to the left, click Associated Items. Click on Passes and click Create a Pass.



Choose an image for your game pass. Make sure your image file is in one of the following formats: .jpg, .png, .bmp. Then fill out the name and description and click Create Pass.



Read more

How to Make an Obby Checkpoint System



Scripting a quality obby checkpoint system can take a while, so we're going to use a pre-made script that you can add to your game. This script will also automatically save your progress in the obby.



Once you have gotten the script, load up your game in Roblox Studio and open the Toolbox. If the Toolbox is not visible, click on View and click where it says Toolbox. In the Toolbox window, go to the Inventory section by clicking the four squares icon and select My Models from the dropdown. Then click on the Obby Checkpoint System model.



Read more

How to Add Shift to Sprint to Your Game



Once you have loaded up your game, open StarterPlayer in the Explorer. If you do not see the Explorer, click on View and then click on Explorer. Inside of StarterPlayer, right click on StarterPlayerScripts, click Insert Object and insert a LocalScript. You can delete the line of code inside of the script.



To add shift to sprint to your game, we need to detect input from the user. To do this, we will be using a service called UserInputService. We will also need to include the Players service in our code so we can update the player's walk speed when the player presses the Shift key.



Read more

How to Make a Spinning Kill Brick



This tutorial assumes you already have a kill brick in your game. Click here to learn how to make a kill brick.



Insert a Script inside of the kill brick that you want to spin. We will need to make a variable for the kill brick so that we can make it spin using code. The script is inside of the kill brick, meaning that the Parent property of the script is the kill brick. Therefore, we can reference the kill brick using the following line of code:



local killBrick = script.Parent

Read more

How to Create a Badge for Your Game



To create a badge on Roblox, first go to create.roblox.com. Next, click on the game you want to add the badge to. On the sidebar to the left, click Associated Items. Click on Badges and click Create a Badge.



Choose an image for your badge. Make sure your image file is in one of the following formats: .jpg, .png, .tga, .bmp. Then fill out the name and description and click Create Badge. You can create 5 badges for free every day. Additional badges will cost 100 robux each.



Read more

How to Make a Welcome Badge



To learn how to create a badge on Roblox, read this tutorial. Once you have created your badge, load up your game and insert a Script into ServerScriptService. To award a player a badge, we will need to use BadgeService as well as the Players service.



local BadgeService = game:GetService("BadgeService")
local Players = game:GetService("Players")

Read more

How to Make a Meet the Creator Badge



To learn how to create a badge on Roblox, read this tutorial. Once you have created your badge, load up your game and insert a Script into ServerScriptService. To award a player a badge, we will need to use BadgeService as well as the Players service.



local BadgeService = game:GetService("BadgeService")
local Players = game:GetService("Players")

Read more