Raptor Strike Resources
  • Welcome
  • Roblox Scripts
    • XP System
      • Installation
      • Extra Information
      • Settings File
    • Emote Menu
      • Installation
      • Extra Information
      • Settings File
  • Roblox Game Setups
    • Obby Template
      • Installation
      • Extra Information
      • Settings File
Powered by GitBook
On this page
  1. Roblox Game Setups
  2. Obby Template

Settings File

A preview of the settings file, showing you what you can easily change with this script.

{
    
    -- Any of these users can use the commands !setstage, !setrebirths
    Admin_Users = {4880982813},
    
    -- Edit nameplates further in /StarterPlayer/StarterCharacterScripts/Nameplates.lua
    Nameplates = {
        Enabled = true,
        ShowToOwnPlayer = true
    },
    
    Sounds = {
        BackingTrack = {
            Enabled = true, -- If true, this sound/music will play consistently in the server
            Id = "rbxassetid://129879886894854",
            Volume = .3,
            Pitch = 1
        },
        -- Sound is played to everyone (along with an alert onscreen) when someone in the lobby activates a Nuke All or Reset All
        Alerts = {
            Id = "rbxassetid://111808422627636",
            Volume = .4,
            Pitch = 1
        },
        
        -- Sound id played when the player reaches a new stage
        NewStage = {
            Id = "rbxassetid://99156997460462",
            Volume = .4,
            Pitch = 1
        },
    },
    
    -- Should the price be shown on a shop item's BUY button instead of the word "BUY"
    -- The price is automatically grabbed from the item's price on the Roblox Creator Hub
    ShowPriceOnBuyButton = true,
    
    Products = {
        SkipStage = 2835615480, -- Make sure this is a DEVELOPER PRODUCT Item
        SkipToEnd = 2836369315, -- Make sure this is a DEVELOPER PRODUCT Item
        NukeAll = 2836369390, -- Make sure this is a DEVELOPER PRODUCT Item
        ResetAll = 2836369462, -- Make sure this is a DEVELOPER PRODUCT Item
        Invincibility = 1055159913, -- Make sure this is a GAMEPASS Item
        DoubleJump = 1072376554, -- Make sure this is a GAMEPASS Item
        
        KillPrompt = { -- Kill Prompts are the prompts that show on all players that other players can buy to kill a player when they choose
            Enabled = true,
            Id = 3194889310, -- Make sure this is a DEVELOPER PRODUCT Item
            HoldTime = .5, -- Time a player has to hold on the prompt for before the purchase screen comes up
        },
    },
    
    Items = {
        Boombox = 1071047954,
        GrappleHook = 1071734965,
        GravityCoil = 1071539470,
        SpeedCoil = 1071403788,
        HealingCoil = 1071647807,
        MagicCarpet = 1071220214,
    },
    

    Badges = {
        
        -- This badge will be given to players when any creators are in the same server as them.
        MetCreatorBadge = {
            Enabled = true,
            CreatorIds = {123456789},
            BadgeId = 123456789,
        },
        
        -- This badge will be given when someone joins your game for the first time, if enabled.
	WelcomeBadge  = {
	    Enabled = true,
	    BadgeId = 123456789,
	},
        
        -- Badges given to players when they reach a certain stage
        Stages = {
            [1] = 123456789,
            [5] = 123456789,
            [10] = 123456789,
            [15] = 123456789,
            [20] = 123456789,
        },
        
        -- Badges given to players when they reach a certain amount of rebirths
        Rebirths = {
            [1] = 123456789,
            [3] = 123456789,
            [5] = 123456789,
        }
    },
    
    -- Enable/Disable the information in the top right of the screen
    TopBars = {
        InviteButton = true,
        FPSPing = true,
    },
    
    FooterText = "This can be changed! (Or removed!)", -- Text that will show up permanently in the bottom left of a players screen.
    -- Set to "" for no text
}
PreviousExtra Information

Last updated 2 months ago