I asked you if you knew how to install resources, you said yes, why do you say yes if you don't really know how?
Read this manual: https://wiki.multitheftauto.com/wiki/Se ... our_server
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
addEventHandler ( "onClientGUIClick", butAjutor,
function ( )
outputChatBox ( "THE BUTTON WAS CLICKED!" )
end
,false
)
That'll output a chatbox message when you click that button.