How to config: Go to config_armor.lua and follow this format
Armor:Add({ Name = "Ultra God Tier", // name it appears in the sandbox menu and darkrp menu Length = ( 99999 * 1 ), // how long does it last Description = "Ultra God Tier", // description shown when using the suit Model = "models/epangelmatikes/MTU/MTUltimate.mdl", // what your model changes to Entitie = "armor_ug", // the entitie name for the armor Price = 4500000, // how much it costs OnGive = function( ply ) // what happens when they get the suit equipped ply:SetArmor( 1000 ) ply:SetHealth( 25000 ) ply:SetJumpPower( 550 )
ply._oldRunSpeed = ply:GetRunSpeed() ply:SetRunSpeed( ply:GetRunSpeed() + ( ply:GetRunSpeed() * 2) ) end, OnRemove = function( ply ) // what happens when the suit is removed ply:SetArmor( 0 ) ply:SetHealth( 100 ) ply:SetJumpPower( 200 )
if ( ply._oldRunSpeed ) then ply:SetRunSpeed( ply._oldRunSpeed ) ply._oldRunSpeed = nil end end, })