Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Create a .lua file and put it in your garrysmod/lua/autorun folder and put this code in it
hook.Add("PlayerSpawn","givevipweapons",function(ply)
if ply:IsUserGroup("ULXRANK") or ply:IsUserGroup("ULXRANK") or ply:IsUserGroup("ULXRANK") then
ply:Give("WEAPONHERE")
end
end)
To find the ULX rank, it is just whatever the ranks name that you created is. To find the weapon name, hold Q and go to weapons, then right click on the weapon you want and click copy to clipboard, or just copy, whichever it is. You then just paste it into the WEAPONHERE slot. To add more weapons, just add more ply:Give functions.