Configuration

change the needs in config.lua

config.lua

Config = {}
Config.command = 'pvp'
Config.KeyBind = 'F3'
Config.Menutitle = 'PVP MENU'
Config.MenuLocation = 'top-left'
Config.VehicleCooldown = 60 -- 1 minute
Config.TeleportCooldown = 15 -- 15 seconds
Config.PassiveModeDuration = 5  ---passivemode in sec
Config.HealCooldown = 10 ---in seconds
Config.ArmorCooldown = 15 --- in seconds
Config.HelmetCooldown = 20 ---in seconds
-- Teleport locations
Config.Teleports = {
    { label = '🏟 Spawn', coords = vector3(288.4805, -1601.3655, 31.2659) },
    { label = 'πŸ‘— Dress Shop', coords = vector3(73.9530, -1398.9939, 29.3762) }
}

-- Vehicles
Config.Vehicles = {
    { label = 'πŸš— Super Car', model = 'adder' },
    { label = '🏍 Bike', model = 'bati' },
    { label = 'πŸš™ Offroad', model = 'sandking' }
}

Config.revive ={
	Title = '[E] Press to Revive',
	Position = 'bottom-center',
	icon = '🩺',
	rvMssg = 'You have been revived',
	pmMssg = 'Passive Mode Enabled', 
	pmDesc = 'You are safe for ' .. Config.PassiveModeDuration .. ' seconds', 
	pmEnd = 'Passive Mode Disabled'
}

sv_utils.lua

Last updated