Jump to content

Evil-Cod3r

Members
  • Posts

    370
  • Joined

  • Last visited

Everything posted by Evil-Cod3r

  1. Evil-Cod3r

    server FFS

    HUNTER what is the Best Host for the servers ?
  2. Evil-Cod3r

    Need Scripts

    Benxamix2 can you learn me Lua i Pay ?
  3. Evil-Cod3r

    server FFS

    no config file and acl.xml and deathmath.co ....
  4. Evil-Cod3r

    server FFS

    i have mta 1.3 files for ffs you uplode them and then Volla ! server well be 1.3
  5. no scooby that is what Csmit Made i want thx
  6. For Example if my Money = 120 and i Bought Desert gun then Play Sound Buy.mp3 else play Sound Error.mp3
  7. Kenix its Possble to Playe sound for example if i have Mutch Money and Buy Gun Play Sound else PlaySound Error ?? GUIEditor_Window = {} GUIEditor_TabPanel = {} GUIEditor_Tab = {} GUIEditor_Button = {} GUIEditor_Label = {} GUIEditor_Image = {} GUIEditor_Window[1] = guiCreateWindow(255,151,638,373,"War_Panel By Evil-Cod3r v1.0",false) guiWindowSetMovable(GUIEditor_Window[1],false) guiWindowSetSizable(GUIEditor_Window[1],false) GUIEditor_TabPanel[1] = guiCreateTabPanel(9,23,620,341,false,GUIEditor_Window[1]) GUIEditor_Tab[1] = guiCreateTab("Weapons",GUIEditor_TabPanel[1]) GUIEditor_Image[1] = guiCreateStaticImage(0,0,143,81,"images/1.png",false,GUIEditor_Tab[1]) GUIEditor_Button[1] = guiCreateButton(6,87,139,29,"Desert Eagle",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Button[1],"clear-normal") GUIEditor_Label[1] = guiCreateLabel(8,126,179,18,"Buy Desert Eagle For $120 ?",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[1],0,255,0) guiSetFont(GUIEditor_Label[1],"clear-normal") GUIEditor_Image[2] = guiCreateStaticImage(243,3,177,92,"images/2.png",false,GUIEditor_Tab[1]) GUIEditor_Button[2] = guiCreateButton(245,97,150,28,"M-4",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Button[2],"clear-normal") GUIEditor_Label[2] = guiCreateLabel(243,130,175,22,"Buy M-4 For $ 250 ?",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[2],255,0,0) guiSetFont(GUIEditor_Label[2],"clear-normal") GUIEditor_Image[3] = guiCreateStaticImage(392,138,215,65,"images/3.png",false,GUIEditor_Tab[1]) GUIEditor_Button[3] = guiCreateButton(410,205,148,25,"Sniper",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Button[3],"clear-normal") GUIEditor_Label[3] = guiCreateLabel(406,241,178,20,"Buy Sniper For $320 ?",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[3],255,0,255) guiSetFont(GUIEditor_Label[3],"clear-normal") GUIEditor_Image[4] = guiCreateStaticImage(11,172,369,128,"images/mtalogo.png",false,GUIEditor_Tab[1]) GUIEditor_Tab[2] = guiCreateTab("Shop",GUIEditor_TabPanel[1]) GUIEditor_Image[5] = guiCreateStaticImage(24,26,207,66,"images/4.png",false,GUIEditor_Tab[2]) GUIEditor_Button[4] = guiCreateButton(36,101,165,34,"Armor",false,GUIEditor_Tab[2]) guiSetFont(GUIEditor_Button[4],"clear-normal") GUIEditor_Label[4] = guiCreateLabel(33,148,154,22,"Buy Armor $ 2500 ?",false,GUIEditor_Tab[2]) guiLabelSetColor(GUIEditor_Label[4],0,0,255) guiSetFont(GUIEditor_Label[4],"clear-normal") GUIEditor_Image[6] = guiCreateStaticImage(316,21,227,78,"images/5.png",false,GUIEditor_Tab[2]) GUIEditor_Button[5] = guiCreateButton(332,106,173,33,"Health",false,GUIEditor_Tab[2]) guiSetFont(GUIEditor_Button[5],"clear-normal") GUIEditor_Label[5] = guiCreateLabel(330,154,158,22,"Buy Health For $ 1500 ?",false,GUIEditor_Tab[2]) guiLabelSetColor(GUIEditor_Label[5],0,255,255) guiSetFont(GUIEditor_Label[5],"clear-normal") GUIEditor_Image[7] = guiCreateStaticImage(19,187,530,116,"images/mtalogo.png",false,GUIEditor_Tab[2]) GUIEditor_Image[8] = guiCreateStaticImage(646,15,0,5,"images/3.png",false,GUIEditor_Window[1]) addEventHandler ("onClientGUIClick", getRootElement(), function(button, state, absoluteX, absoluteY) if ( source == GUIEditor_Button[1] ) then triggerServerEvent("giveWeapon",getLocalPlayer()) takePlayerMoney ( source , tonumber(120) ) end end ) addEvent ( "playSound" , true ) addEventHandler ( "playSound" , root , function() playSound ( "sounds/Buy.mp3" , false ) end) addEvent( 'giveWeapon',true ) addEventHandler( 'giveWeapon',root, function( ) local Money = getPlayerMoney( source ) local Name = getPlayerName( source) if Money >= 120 then giveWeapon ( source, 29 ) triggerClientEvent ( source, "playSound" , source ) outputChatBox ( Name .. "#FF0000Has Bought --- > #00FF00Desert Eagle", root, 255, 255, 255, true ) else outputChatBox("#ff0000You Dont Have #00ff00$120 To Buy This Weapons", source, root, 255, 255, 255, true) end end )
  8. oh Thank You For Show Me My Error Man Worked
  9. Evil-Cod3r

    sreen_money

    yeah its stoln form UAEPRO Script
  10. Client triggerd serverSide event giveWeapon, but event is not added serverSide Client GUIEditor_Window = {} GUIEditor_TabPanel = {} GUIEditor_Tab = {} GUIEditor_Button = {} GUIEditor_Label = {} GUIEditor_Image = {} GUIEditor_Window[1] = guiCreateWindow(255,151,638,373,"War_Panel By Evil-Cod3r v1.0",false) guiWindowSetMovable(GUIEditor_Window[1],false) guiWindowSetSizable(GUIEditor_Window[1],false) GUIEditor_TabPanel[1] = guiCreateTabPanel(9,23,620,341,false,GUIEditor_Window[1]) GUIEditor_Tab[1] = guiCreateTab("Weapons",GUIEditor_TabPanel[1]) GUIEditor_Image[1] = guiCreateStaticImage(0,0,143,81,"images/1.png",false,GUIEditor_Tab[1]) GUIEditor_Button[1] = guiCreateButton(6,87,139,29,"Desert Eagle",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Button[1],"clear-normal") GUIEditor_Label[1] = guiCreateLabel(8,126,179,18,"Buy Desert Eagle For $120 ?",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[1],0,255,0) guiSetFont(GUIEditor_Label[1],"clear-normal") GUIEditor_Image[2] = guiCreateStaticImage(243,3,177,92,"images/2.png",false,GUIEditor_Tab[1]) GUIEditor_Button[2] = guiCreateButton(245,97,150,28,"M-4",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Button[2],"clear-normal") GUIEditor_Label[2] = guiCreateLabel(243,130,175,22,"Buy M-4 For $ 250 ?",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[2],255,0,0) guiSetFont(GUIEditor_Label[2],"clear-normal") GUIEditor_Image[3] = guiCreateStaticImage(392,138,215,65,"images/3.png",false,GUIEditor_Tab[1]) GUIEditor_Button[3] = guiCreateButton(410,205,148,25,"Sniper",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Button[3],"clear-normal") GUIEditor_Label[3] = guiCreateLabel(406,241,178,20,"Buy Sniper For $320 ?",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[3],255,0,255) guiSetFont(GUIEditor_Label[3],"clear-normal") GUIEditor_Image[4] = guiCreateStaticImage(11,172,369,128,"images/mtalogo.png",false,GUIEditor_Tab[1]) GUIEditor_Tab[2] = guiCreateTab("Shop",GUIEditor_TabPanel[1]) GUIEditor_Image[5] = guiCreateStaticImage(24,26,207,66,"images/4.png",false,GUIEditor_Tab[2]) GUIEditor_Button[4] = guiCreateButton(36,101,165,34,"Armor",false,GUIEditor_Tab[2]) guiSetFont(GUIEditor_Button[4],"clear-normal") GUIEditor_Label[4] = guiCreateLabel(33,148,154,22,"Buy Armor $ 2500 ?",false,GUIEditor_Tab[2]) guiLabelSetColor(GUIEditor_Label[4],0,0,255) guiSetFont(GUIEditor_Label[4],"clear-normal") GUIEditor_Image[6] = guiCreateStaticImage(316,21,227,78,"images/5.png",false,GUIEditor_Tab[2]) GUIEditor_Button[5] = guiCreateButton(332,106,173,33,"Health",false,GUIEditor_Tab[2]) guiSetFont(GUIEditor_Button[5],"clear-normal") GUIEditor_Label[5] = guiCreateLabel(330,154,158,22,"Buy Health For $ 1500 ?",false,GUIEditor_Tab[2]) guiLabelSetColor(GUIEditor_Label[5],0,255,255) guiSetFont(GUIEditor_Label[5],"clear-normal") GUIEditor_Image[7] = guiCreateStaticImage(19,187,530,116,"images/mtalogo.png",false,GUIEditor_Tab[2]) GUIEditor_Image[8] = guiCreateStaticImage(646,15,0,5,"images/3.png",false,GUIEditor_Window[1]) addEventHandler ("onClientGUIClick", getRootElement(), function(button, state, absoluteX, absoluteY) if ( source == GUIEditor_Button[1] ) then triggerServerEvent("giveWeapon,",getLocalPlayer()) end end ) addEvent ( "playSound" , true ) addEventHandler ( "playSound" , root , function() playSound ( "sounds/Buy.mp3" , false ) end) addEvent( 'giveWeapon',true ) addEventHandler( 'giveWeapon',root, function( ) local Money = getPlayerMoney( source ) local Name = getPlayerName( source) if Money >= 120 then giveWeapon ( source, 29 ) triggerClientEvent ( source, "playSound" , source ) outputChatBox ( Name .. "#FF0000Has Bought #00FF00Desert Eagle", root, 255, 255, 255, true ) end end )
  11. Hi iam Making a War Shop Panel but it has Problem client triggerd server side but client is not add server side clientSide .. GUIEditor_Window = {} GUIEditor_TabPanel = {} GUIEditor_Tab = {} GUIEditor_Button = {} GUIEditor_Label = {} GUIEditor_Image = {} GUIEditor_Window[1] = guiCreateWindow(255,151,638,373,"War_Panel By Evil-Cod3r v1.0",false) guiWindowSetMovable(GUIEditor_Window[1],false) guiWindowSetSizable(GUIEditor_Window[1],false) GUIEditor_TabPanel[1] = guiCreateTabPanel(9,23,620,341,false,GUIEditor_Window[1]) GUIEditor_Tab[1] = guiCreateTab("Weapons",GUIEditor_TabPanel[1]) GUIEditor_Image[1] = guiCreateStaticImage(0,0,143,81,"images/1.png",false,GUIEditor_Tab[1]) GUIEditor_Button[1] = guiCreateButton(6,87,139,29,"Desert Eagle",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Button[1],"clear-normal") GUIEditor_Label[1] = guiCreateLabel(8,126,179,18,"Buy Desert Eagle For $120 ?",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[1],0,255,0) guiSetFont(GUIEditor_Label[1],"clear-normal") GUIEditor_Image[2] = guiCreateStaticImage(243,3,177,92,"images/2.png",false,GUIEditor_Tab[1]) GUIEditor_Button[2] = guiCreateButton(245,97,150,28,"M-4",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Button[2],"clear-normal") GUIEditor_Label[2] = guiCreateLabel(243,130,175,22,"Buy M-4 For $ 250 ?",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[2],255,0,0) guiSetFont(GUIEditor_Label[2],"clear-normal") GUIEditor_Image[3] = guiCreateStaticImage(392,138,215,65,"images/3.png",false,GUIEditor_Tab[1]) GUIEditor_Button[3] = guiCreateButton(410,205,148,25,"Sniper",false,GUIEditor_Tab[1]) guiSetFont(GUIEditor_Button[3],"clear-normal") GUIEditor_Label[3] = guiCreateLabel(406,241,178,20,"Buy Sniper For $320 ?",false,GUIEditor_Tab[1]) guiLabelSetColor(GUIEditor_Label[3],255,0,255) guiSetFont(GUIEditor_Label[3],"clear-normal") GUIEditor_Image[4] = guiCreateStaticImage(11,172,369,128,"images/mtalogo.png",false,GUIEditor_Tab[1]) GUIEditor_Tab[2] = guiCreateTab("Shop",GUIEditor_TabPanel[1]) GUIEditor_Image[5] = guiCreateStaticImage(24,26,207,66,"images/4.png",false,GUIEditor_Tab[2]) GUIEditor_Button[4] = guiCreateButton(36,101,165,34,"Armor",false,GUIEditor_Tab[2]) guiSetFont(GUIEditor_Button[4],"clear-normal") GUIEditor_Label[4] = guiCreateLabel(33,148,154,22,"Buy Armor $ 2500 ?",false,GUIEditor_Tab[2]) guiLabelSetColor(GUIEditor_Label[4],0,0,255) guiSetFont(GUIEditor_Label[4],"clear-normal") GUIEditor_Image[6] = guiCreateStaticImage(316,21,227,78,"images/5.png",false,GUIEditor_Tab[2]) GUIEditor_Button[5] = guiCreateButton(332,106,173,33,"Health",false,GUIEditor_Tab[2]) guiSetFont(GUIEditor_Button[5],"clear-normal") GUIEditor_Label[5] = guiCreateLabel(330,154,158,22,"Buy Health For $ 1500 ?",false,GUIEditor_Tab[2]) guiLabelSetColor(GUIEditor_Label[5],0,255,255) guiSetFont(GUIEditor_Label[5],"clear-normal") GUIEditor_Image[7] = guiCreateStaticImage(19,187,530,116,"images/mtalogo.png",false,GUIEditor_Tab[2]) GUIEditor_Image[8] = guiCreateStaticImage(646,15,0,5,"images/3.png",false,GUIEditor_Window[1]) addEventHandler ("onClientGUIClick", getRootElement(), function(button, state, absoluteX, absoluteY) if ( source == GUIEditor_Button[1] ) then triggerServerEvent("giveWeapon,",getLocalPlayer()) end end ) ServerSide .. addEvent("giveWeapon",true) addEventHandler("giveWeapon",root function() local Money = getPlayerMoney(source) local Name = getPlayerName(getLocalPlayer()) if (Money >= 120 ) then giveWeapon ( source, 29 ) outputChatBox (Name .. "#FF0000Has Bought #00FF00Desert Eagle", getRootElement(), 255, 255, 255, true ) end end )
  12. now i got 1 problem when i got unmuted i write 1 time in chat he give me mute 20 sec ??
  13. i got problem outputChatBox The Name of author and if i get unmute outputChatBox("You Have Been Unmuted!) dont show local spam = { } local uTimers = { } local setting = get( "kick" ) function onChat ( message, messageType ) spam[ source ] = tonumber( spam[ source ] or 0 ) + 1 if spam[ source ] == 3 then outputChatBox( "Warning - Do Not Spam! ",source,255,0,0 ) elseif spam[ source ] > 5 then if setting == "true" then outputChatBox( "Kicking " .. getPlayerName(source) .. " For Flooding The Chat! 5 Times !",root,255,0,0 ) kickPlayer( source,"You Have Been Kicked For Flooding! 5/5" ) elseif setting == "false" then setPlayerMuted( source,true ) outputChatBox( getPlayerName(source) .. " Has Been Auto Muted [20 sec]",root,255,0,0 ) if isTimer( uTimers[ source ] ) then killTimer( uTimers[ source ] ) end else uTimers[ source ] = setTimer( setPlayerMuted,20000,1,source,false ) outputChatBox( "You Have Been unMuted Dont Try Spam! ",source,255,255,0 ) end end end addEventHandler ( "onPlayerChat", root, onChat) function quitPlayer( ) spam[ source ] = nil uTimers[ source ] = nil end addEventHandler ( "onPlayerQuit", root, quitPlayer ) function active2 () addEvent( "onStart", true ) addEventHandler( "onStart", getRootElement(), active2) outputChatBox(".:[ Anti Flood | #FFFF1ABy E ]:.",0,255,0,true) end function active () triggerServerEvent ( "onStart", getLocalPlayer() ) end addEventHandler ( "onResourceStart", getRootElement(), active)
  14. its say server.lua:21 expected near then local spam = {} local setting = get("kick") function loseSpam(player) if spam[player] > 0 then spam[player] = spam[player] - 1 end end function onChat ( message, messageType ) spam[source] = spam[source] or 0 spam[source] = spam[source] + 1 if spam[source] == 3 then outputChatBox("Warning - Do Not Spam! ",source,255,0,0) else if spam[source] > 3 then if setting == "true" then outputChatBox("Kicking " .. getPlayerName(source) .. " For Flooding The Chat!",getRootElement(),255,0,0) kickPlayer(source,"You Have Been Kicked For Flooding!") elseif setting == "false" setPlayerMuted(source,true) outputChatBox(getPlayerName(source) .. " Has Been Auto Muted [20 sec]",getRootElement(),255,0,0) setTimer(setPlayerMuted,20000,1,source,false) end addEventHandler ( "onPlayerChat", getRootElement(), onChat) function quitPlayer() spam[source] = nil end addEventHandler ( "onPlayerQuit", getRootElement(), quitPlayer )
  15. You Mean Like This local spam = {} local setting = get("kick") function loseSpam(player) if spam[player] > 0 then spam[player] = spam[player] - 1 end end function onChat ( message, messageType ) spam[source] = spam[source] or 0 spam[source] = spam[source] + 1 if spam[source] == 3 then outputChatBox("Warning - Do Not Spam! ",source,255,0,0) else if spam[source] > 3 then if setting then outputChatBox("Kicking " .. getPlayerName(source) .. " For Flooding The Chat!",getRootElement(),255,0,0) kickPlayer(source,"You Have Been Kicked For Flooding!") else setPlayerMuted(source,true) outputChatBox(getPlayerName(source) .. " Has Been Auto Muted [20 sec]",getRootElement(),255,0,0) setTimer(setPlayerMuted,20000,1,source,false) end end end setTimer(loseSpam,2000,1,source) end addEventHandler ( "onPlayerChat", getRootElement(), onChat) function quitPlayer() spam[source] = nil end addEventHandler ( "onPlayerQuit", getRootElement(), quitPlayer ) meta.xml type="script" name="Anti-Flood" author="Evil-Cod3r" description="" version="1.0" />
  16. i dont get what you say the kick msg mute player?
  17. and can i add sesting in the meta.xml like true = kick himg false = dont kick just mute for 15 sec ..
  18. You Mean Like this ? local timer = { } local yes = true function flood (msg, msgType) if yes then --- if yes = give him Kick else = mute only for 15 sec .. who to do that ? if ( hasObjectPermissionTo ( getThisResource (), "function.kickPlayer", true ) ) then local accName = getAccountName ( getPlayerAccount ( thePlayer ) ) if isObjectInACLGroup ( "user." .. accName, aclGetGroup ( "BigAdmin" ) ) then else outputChatBox("You Have To Be Big Admin To Run This Script !!!",source, 255,255,0) outputChatBox("Please Dont Repate more then 3 Times or You Well Be Kicked. 1/0",source,255,255,0) outputChatBox("Please Dont Repate more then 3 Times or You Well Be Kicked. 2/2",source,255,255,0) outputChatBox("Please Dont Repate more then 3 Times or You Well Be Kicked. 3/3",source,255,255,0) outputChatBox(getPlayerName(source) .."Has Been Kicked For Flooding the Chat 3/3",255,0,255) kickPlayer ( source, "You Have Been Kicked For Flooding The Chat !") end end
  19. Hi All i have Made this i want if i spam in the NormalChat Only 3 times give me wirnning 3 times after that give Kick with Msg and can i add sesting in meta.xml ? for example < sesting = "true" = give him kick sesting = "false" = give him mute Only ? Help please local timer = { } function flood (msg, msgType) elseif timer = {3} then if ( hasObjectPermissionTo ( getThisResource (), "function.kickPlayer", true ) ) then if isObjectInACLGroup ( "user." .. accountname, aclGetGroup ( "admin" ) ) then outputChatBox("Please Dont Repate more then 3 Times or You Well Be Kicked. 1/0",source,255,255,0) outputChatBox("Please Dont Repate more then 3 Times or You Well Be Kicked. 2/2",source,255,255,0) outputChatBox("Please Dont Repate more then 3 Times or You Well Be Kicked. 3/3",source,255,255,0) outputChatBox(getPlayerName(source) .."Has Been Kicked For Flooding the Chat 3/3",255,0,255) kickPlayer ( source, "You Have Been Kicked For Flooding The Chat !") end
  20. addCommandHandler( "flip", function ( player, cmd ) local playerTeam = getPlayerTeam ( player ) local veh = getPedOccupiedVehicle(player) if playerTeam then local name = getTeamName ( playerTeam ) if name == "Owner" or name == "Admin" then local x,y,z = getElementPosition( player ) setElementPosition ( veh, x, y, z + 5 ) end end end )
  21. Evil-Cod3r

    Nametags

    try my script ------------- By Evil-Cod3er v1.0 ------------- ------------- local x, y = guiGetScreenSize() function PlayerNameTags() local players = getElementsByType("player") for k,v in ipairs(players) do if v == getLocalPlayer() then else local r = getElementData(v,"red") local g = getElementData(v,"green") local b = getElementData(v,"blue") local x1,y1,z1 = getElementPosition (getLocalPlayer()) local x2,y2,z2 = getElementPosition (v) local visibleto = getDistanceBetweenPoints3D(x1,y1,z1,x2,y2,z2) if visibleto > 75 then else local sx,sy = getScreenFromWorldPosition ( x2,y2,z2+1.05 ) if not sx and not sy then else dxDrawText ( string.gsub ( getPlayerName ( v ), "#%x%x%x%x%x%x", "" ).."", sx,sy,sx,sy, tocolor(r,g,b,255), 1.8-visibleto/50, "default-bold", "center","top",false,false,false ) if y/102-visibleto/5 < 0 then else dxDrawRectangle ( sx-x/13/2+visibleto/2, sy+y/27.2-visibleto/3, x/13-visibleto,y/102-visibleto/10, tocolor(0,0,0,255) ) dxDrawRectangle ( sx-x/14/2+visibleto/2, sy+y/25-visibleto/3, x/14-visibleto,y/146.3-visibleto/10, tocolor(100,0,0,245) ) if getElementHealth(v) < 1 then else dxDrawRectangle ( sx-x/14/2+visibleto/2, sy+y/25-visibleto/3, x/14*getElementHealth(v)/100-visibleto,y/146.3-visibleto/10, tocolor(190,0,0,245) ) end local armor = getPedArmor(v) if armor and armor > 0 then dxDrawRectangle ( sx-x/13/2+visibleto/2, sy+y/40.2-visibleto/3, x/13-visibleto,y/102-visibleto/10, tocolor(0,0,0,255) ) dxDrawRectangle ( sx-x/14/2+visibleto/2, sy+y/38-visibleto/3, x/14-visibleto,y/146.3-visibleto/10, tocolor(100,100,100,245) ) dxDrawRectangle ( sx-x/14/2+visibleto/2, sy+y/38-visibleto/3, x/14*armor/100-visibleto,y/146.3-visibleto/10, tocolor(190,190,190,245) ) end end end end end end end addEventHandler("onClientRender",getRootElement(),PlayerNameTags) ---- end of the script
×
×
  • Create New...