Jump to content

Adding script help


Recommended Posts

Well, the script has several variables inside, you just change them.

-- Settings for when a player joins 
    -- XYZ coördinates 
    local joinX = 0.0 
    local joinY = 0.0 
    local joinZ = 0.0 
    -- Weapon and ammo 
    local joinWeapon = 22 
    local joinAmmo = 200 
    -- Message when player joins 
    local joinMessage = "Welcome to this server." 
    -- Skin that player gets 
    local joinSkin = 0 
  
-- Settings for when a player dies 
    -- XYZ coördinates 
    local spawnX = 0.0 
    local spawnY = 0.0 
    local spawnZ = 0.0 
    -- Weapon and ammo 
    local spawnWeapon = 22 
    local spawnAmmo = 200 
    -- Skin that player gets 
    local spawnSkin = 0 
  
-- Settings for the amounts of money 
    -- Money the killer gets 
    local killerMoney = 500 
    -- Money removed from player when they die 
    local deadPlayerMoney = 500 
    -- Money you get when you join 
    local joinMoney = 1000 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...