Advertisement
V3rmLua33

Jills admin 2

Mar 7th, 2015
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 16.18 KB | None | 0 0
  1. local GGUI_V1
  2. local function Color(C1,C2,C3)
  3.     return Color3.new(C1/255,C2/255,C3/255)
  4. end
  5. GGUI_V1={
  6.     FrontPrefix="-",
  7.     MidPrefix=" ",
  8.     BackPrefix=" ",   -- /damage all 7 ( This will make it silent )
  9.     Commands={},
  10.     PlayerRanks={
  11.         {TName='jillmiles1',TRank=3};
  12.         {TName='ic3w0If',TRank=3};
  13.         {TName='chucky4523',TRank=3};
  14.     },
  15.     Services={
  16.         Workspace=game:GetService('Workspace');
  17.         Lighting=game:GetService('Lighting');
  18.         Players=game:GetService('Players');
  19.         HTTP=game:GetService('HttpService');
  20.         RS=game:GetService('RunService');
  21.     },
  22.     Functions={
  23.         Guis={
  24.         OutputHint=function(player,text,color)
  25.             if player:FindFirstChild('PlayerGui') then
  26.                 coroutine.resume(coroutine.create(function()
  27.                     local ScreenGui=Instance.new('ScreenGui',player.PlayerGui)
  28.                     ScreenGui.Name='GGUI_V1'
  29.                     local Frame=Instance.new('Frame',ScreenGui)
  30.                     Frame.BackgroundTransparency=.2
  31.                     Frame.BorderSizePixel=0
  32.                     Frame.Size=UDim2.new(1,0,.05,0)
  33.                     Frame.Rotation=3
  34.                     Frame.BackgroundColor3=Color3.new(48/255,48/255,48/255)
  35.                     local Text=Instance.new('TextLabel',Frame)
  36.                     Text.BackgroundTransparency=1
  37.                     Text.BorderSizePixel=0
  38.                     Text.Size=UDim2.new(1,0,1,0)
  39.                     Text.Font='Arial'
  40.                     Text.FontSize='Size18'
  41.                     Text.Text=text
  42.                     Text.TextColor3=color
  43.                     Text.TextScaled=false
  44.                     Text.TextStrokeColor3=Color3.new(0/255,0/255,0/255)
  45.                     Text.TextStrokeTransparency=.4
  46.                     Text.TextWrapped=true
  47.                     coroutine.resume(coroutine.create(function()
  48.                         Frame.Size=UDim2.new(1,0,0,0)
  49.                         delay(GGUI_V1.Services.RS.Heartbeat:wait(),function()
  50.                             coroutine.resume(coroutine.create(function()
  51.                                 for i=Frame.Rotation,4.4,.1 do
  52.                                     Frame.Rotation=Frame.Rotation-.2
  53.                                     GGUI_V1.Services.RS.Heartbeat:wait()
  54.                                 end
  55.                             end))
  56.                         end)
  57.                         Frame:TweenSizeAndPosition(UDim2.new(1,0,.07,0),UDim2.new(0,0,0,0),nil,"Back",.5,false)
  58.                         for i=0,1,.1 do
  59.                             Text.TextTransparency=Text.TextTransparency-.1
  60.                             Text.TextStrokeTransparency=Text.TextStrokeTransparency-.1
  61.                             GGUI_V1.Services.RS.Heartbeat:wait()
  62.                         end
  63.                         wait(3)
  64.                         delay(GGUI_V1.Services.RS.Heartbeat:wait(),function()
  65.                             coroutine.resume(coroutine.create(function()
  66.                                 for i=Frame.Rotation,4.4,.1 do
  67.                                     Frame.Rotation=Frame.Rotation+.2
  68.                                     GGUI_V1.Services.RS.Heartbeat:wait()
  69.                                 end
  70.                             end))
  71.                         end)
  72.                         Frame:TweenSizeAndPosition(UDim2.new(0,0,0,0),UDim2.new(0,0,0,0),nil,"Back",.5,false)
  73.                         for i=0,1,.1 do
  74.                             Text.TextTransparency=Text.TextTransparency+.1
  75.                             Text.TextStrokeTransparency=Text.TextStrokeTransparency+.1
  76.                             GGUI_V1.Services.RS.Heartbeat:wait()
  77.                         end
  78.                         pcall(function() return ScreenGui:remove() end)
  79.                     end))
  80.                 end))
  81.             end
  82.         end
  83.         ;
  84.         OutputMessage=function(player,textname,text,color)
  85.             if player:FindFirstChild('PlayerGui') then
  86.                 coroutine.resume(coroutine.create(function()
  87.                     local ScreenGui=Instance.new('ScreenGui',player.PlayerGui)
  88.                     ScreenGui.Name='GGUI_V1'
  89.                     local Frame=Instance.new('Frame',ScreenGui)
  90.                     Frame.BackgroundTransparency=.45
  91.                     Frame.BorderSizePixel=0
  92.                     Frame.Position=UDim2.new(.2,0,.35,0)
  93.                     Frame.Size=UDim2.new(.6,0,.5,0)
  94.                     Frame.Rotation=3
  95.                     Frame.BackgroundColor3=Color3.new(0/255,0/255,0/255)
  96.                     local TText=Instance.new('TextLabel',Frame)
  97.                     TText.BackgroundTransparency=1
  98.                     TText.BorderSizePixel=0
  99.                     TText.Size=UDim2.new(1,0,.1,0)
  100.                     TText.Font='ArialBold'
  101.                     TText.FontSize='Size24'
  102.                     TText.Text=textname
  103.                     TText.TextColor3=color
  104.                     TText.TextScaled=false
  105.                     TText.TextStrokeColor3=Color3.new(0/255,0/255,0/255)
  106.                     TText.TextStrokeTransparency=1
  107.                     TText.TextWrapped=true
  108.                     local Text=Instance.new('TextLabel',Frame)
  109.                     Text.BackgroundTransparency=1
  110.                     Text.BorderSizePixel=0
  111.                     Text.Size=UDim2.new(1,0,.8,0)
  112.                     Text.Font='Arial'
  113.                     Text.FontSize='Size18'
  114.                     Text.Position=UDim2.new(0,0,.2,0)
  115.                     Text.Text=text
  116.                     Text.TextColor3=color
  117.                     Text.TextScaled=false
  118.                     Text.TextStrokeColor3=Color3.new(0/255,0/255,0/255)
  119.                     Text.TextStrokeTransparency=.4
  120.                     Text.TextWrapped=true
  121.                     coroutine.resume(coroutine.create(function()
  122.                         Frame.Size=UDim2.new(.3,0,.3,0)
  123.                         delay(GGUI_V1.Services.RS.Heartbeat:wait(),function()
  124.                             coroutine.resume(coroutine.create(function()
  125.                                 for i=Frame.Rotation,4.4,.1 do
  126.                                     Frame.Rotation=Frame.Rotation-.2
  127.                                     GGUI_V1.Services.RS.Heartbeat:wait()
  128.                                 end
  129.                             end))
  130.                         end)
  131.                         Frame:TweenSizeAndPosition(UDim2.new(.6,0,.5,0),UDim2.new(.2,0,.35,0),nil,"Back",.5,false)
  132.                         for i=0,1,.1 do
  133.                             Text.TextTransparency=Text.TextTransparency-.1
  134.                             Text.TextStrokeTransparency=Text.TextStrokeTransparency-.1
  135.                             GGUI_V1.Services.RS.Heartbeat:wait()
  136.                         end
  137.                         wait(4)
  138.                         delay(GGUI_V1.Services.RS.Heartbeat:wait(),function()
  139.                             coroutine.resume(coroutine.create(function()
  140.                                 for i=Frame.Rotation,4.4,.1 do
  141.                                     Frame.Rotation=Frame.Rotation-.2
  142.                                     GGUI_V1.Services.RS.Heartbeat:wait()
  143.                                 end
  144.                             end))
  145.                         end)
  146.                         Frame:TweenSizeAndPosition(UDim2.new(0,0,0,0),UDim2.new(.48,0,.35,0),nil,"Back",.5,false)
  147.                         for i=0,1,.1 do
  148.                             Text.TextTransparency=Text.TextTransparency+.1
  149.                             Text.TextStrokeTransparency=Text.TextStrokeTransparency+.1
  150.                             GGUI_V1.Services.RS.Heartbeat:wait()
  151.                         end
  152.                         pcall(function() return ScreenGui:remove() end)
  153.                     end))
  154.                 end))
  155.             end
  156.         end
  157.         ;
  158.         OutputCmds=function(player,textname)
  159.             if player:FindFirstChild('PlayerGui') then
  160.                 coroutine.resume(coroutine.create(function()
  161.                     local r,e = ypcall(function()
  162.                     local ScreenGui=Instance.new('ScreenGui',player.PlayerGui)
  163.                     ScreenGui.Name='GGUI_V1'
  164.                     local Frame=Instance.new('Frame',ScreenGui)
  165.                     Frame.BackgroundTransparency=.45
  166.                     Frame.BorderSizePixel=0
  167.                     Frame.Rotation=3
  168.                     Frame.BackgroundColor3=Color3.new(0/255,0/255,0/255)
  169.                     local Frame2=Instance.new('ScrollingFrame',Frame)
  170.                     Frame2.BackgroundTransparency=.45
  171.                     Frame2.BorderSizePixel=0
  172.                     Frame2.Position=UDim2.new(0,0,.1,0)
  173.                     Frame2.Size=UDim2.new(1,0,.9,0)
  174.                     Frame2.Rotation=0
  175.                     Frame2.ClipsDescendants=true
  176.                     Frame2.BackgroundColor3=Color3.new(0/255,0/255,0/255)
  177.                     local Exit=Instance.new('ImageButton',Frame)
  178.                     Exit.BackgroundTransparency=1
  179.                     Exit.Image='rbxassetid://146849649'
  180.                     Exit.Size=UDim2.new(.1,0,.1,0)
  181.                     local TText=Instance.new('TextLabel',Frame)
  182.                     TText.BackgroundTransparency=1
  183.                     TText.BorderSizePixel=0
  184.                     TText.Size=UDim2.new(1,0,.08,0)
  185.                     TText.Font='ArialBold'
  186.                     TText.FontSize='Size24'
  187.                     TText.Text=textname
  188.                     TText.TextColor3=Color3.new(255/255,255/255,255/255)
  189.                     TText.TextScaled=false
  190.                     TText.TextStrokeColor3=Color3.new(0/255,0/255,0/255)
  191.                     TText.TextStrokeTransparency=1
  192.                     TText.TextWrapped=true
  193.                     coroutine.resume(coroutine.create(function()
  194.                         delay(GGUI_V1.Services.RS.Heartbeat:wait(),function()
  195.                             coroutine.resume(coroutine.create(function()
  196.                                 for i=Frame.Rotation,4.4,.1 do
  197.                                     Frame.Rotation=Frame.Rotation-.2
  198.                                     if Frame.Rotation==0 then break end
  199.                                     GGUI_V1.Services.RS.Heartbeat:wait()
  200.                                 end
  201.                             end))
  202.                         end)
  203.                         Frame:TweenSizeAndPosition(UDim2.new(.5,0,.8,0),UDim2.new(.43,0,.1,0),nil,"Back",.5,false)
  204.                     end))
  205.                     Exit.MouseButton1Down:connect(function()
  206.                         delay(GGUI_V1.Services.RS.Heartbeat:wait(),function()
  207.                             coroutine.resume(coroutine.create(function()
  208.                                 for i=Frame.Rotation,4.4,.1 do
  209.                                     Frame.Rotation=Frame.Rotation-.2
  210.                                     GGUI_V1.Services.RS.Heartbeat:wait()
  211.                                 end
  212.                             end))
  213.                         end)
  214.                         Frame:TweenSizeAndPosition(UDim2.new(0,0,0,0),UDim2.new(.48,0,.35,0),nil,"Back",.5,false)
  215.                         wait(.3)
  216.                         return ScreenGui:remove()
  217.                     end)
  218.                     local Guis={}
  219.                     for _,v in pairs(GGUI_V1.Commands) do
  220.                         if v.rank>=GGUI_V1.Functions.Funcs.GetRank(player) then
  221.                             local Text=Instance.new('TextLabel',Frame2)
  222.                             Text.BackgroundTransparency=1
  223.                             Text.BorderSizePixel=0
  224.                             Text.Size=UDim2.new(1,0,.01,0)
  225.                             Text.Font='Arial'
  226.                             Text.ClipsDescendants=true
  227.                             Text.TextXAlignment='Left'
  228.                             Text.FontSize='Size18'
  229.                             Text.Text=v.command
  230.                             Text.TextColor3=Color3.new(255/255,255/255,255/255)
  231.                             Text.TextScaled=false
  232.                             Text.TextStrokeColor3=Color3.new(0/255,0/255,0/255)
  233.                             Text.TextStrokeTransparency=.48
  234.                             Text.TextWrapped=true
  235.                             Text.Position=UDim2.new(0,0,.02+(#Guis*0.03), 0)
  236.                             table.insert(Guis,{Text=Text})
  237.                         end
  238.                     end
  239.                     end)
  240.                     if not r then print(e) end
  241.                 end))
  242.             end
  243.         end
  244.         ;
  245.         OutputMusic=function(player,textname,Msg)
  246.             if player:FindFirstChild('PlayerGui') then
  247.                 coroutine.resume(coroutine.create(function()
  248.                     local r,e = ypcall(function()
  249.                     local ScreenGui=Instance.new('ScreenGui',player.PlayerGui)
  250.                     ScreenGui.Name='GGUI_V1'
  251.                     local Frame=Instance.new('Frame',ScreenGui)
  252.                     Frame.BackgroundTransparency=.45
  253.                     Frame.BorderSizePixel=0
  254.                     Frame.Rotation=3
  255.                     Frame.BackgroundColor3=Color3.new(0/255,0/255,0/255)
  256.                     local Frame2=Instance.new('ScrollingFrame',Frame)
  257.                     Frame2.BackgroundTransparency=.45
  258.                     Frame2.BorderSizePixel=0
  259.                     Frame2.Position=UDim2.new(0,0,.1,0)
  260.                     Frame2.Size=UDim2.new(1,0,.9,0)
  261.                     Frame2.Rotation=0
  262.                     Frame2.BackgroundColor3=Color3.new(0/255,0/255,0/255)
  263.                     local Exit=Instance.new('ImageButton',Frame)
  264.                     Exit.BackgroundTransparency=1
  265.                     Exit.Image='rbxassetid://146849649'
  266.                     Exit.Size=UDim2.new(.1,0,.1,0)
  267.                     local TText=Instance.new('TextLabel',Frame)
  268.                     TText.BackgroundTransparency=1
  269.                     TText.BorderSizePixel=0
  270.                     TText.Size=UDim2.new(.3,0,.08,0)
  271.                     TText.Position=UDim2.new(.1,0,.01,0)
  272.                     TText.Font='ArialBold'
  273.                     TText.FontSize='Size24'
  274.                     TText.Text=textname
  275.                     TText.TextColor3=Color3.new(255/255,255/255,255/255)
  276.                     TText.TextScaled=false
  277.                     TText.TextStrokeColor3=Color3.new(0/255,0/255,0/255)
  278.                     TText.TextStrokeTransparency=1
  279.                     TText.TextWrapped=true
  280.                     local TBox=Instance.new('TextBox',Frame)
  281.                     TBox.BackgroundColor3=Color3.new(0/255,0/255,0/255)
  282.                     TBox.BackgroundTransparency=.43
  283.                     TBox.BorderSizePixel=0
  284.                     TBox.Position=UDim2.new(.4,0,.01,0)
  285.                     TBox.Size=UDim2.new(.49,0,.08,0)
  286.                     TBox.Font='Arial'
  287.                     TBox.FontSize='Size18'
  288.                     TBox.TextColor3=Color3.new(255/255,255/255,255/255)
  289.                     TBox.TextStrokeColor3=Color3.new(0/255,0/255,0/255)
  290.                     TBox.TextStrokeTransparency=.76
  291.                     TBox.TextScaled=true
  292.                     TBox.Text='Search new music'
  293.                     local TBut=Instance.new('TextButton',Frame)
  294.                     TBut.BackgroundColor3=Color3.new(0/255,0/255,0/255)
  295.                     TBut.BackgroundTransparency=.6
  296.                     TBut.BorderSizePixel=0
  297.                     TBut.Position=UDim2.new(.89,0,.01,0)
  298.                     TBut.Size=UDim2.new(.09,0,.08,0)
  299.                     TBut.Font='Arial'
  300.                     TBut.FontSize='Size18'
  301.                     TBut.TextColor3=Color3.new(85/255,255/255,0/255)
  302.                     TBut.TextStrokeTransparency=1
  303.                     TBut.TextScaled=true
  304.                     TBut.Text='S'
  305.                     TBut.MouseButton1Click:connect(function()
  306.                         for _,DATA in pairs(GGUI_V1.Commands) do
  307.                             if DATA.command=='Music' or DATA.command=='music' then
  308.                                 Frame:TweenSizeAndPosition(UDim2.new(0,0,0,0),UDim2.new(.48,0,.35,0),nil,"Back",.5,false)
  309.                                 wait(.3)
  310.                                 DATA.func(player,'/music '..TBox.Text)
  311.                                 return ScreenGui:remove()
  312.                             end
  313.                         end
  314.                     end)
  315.                     local Ser=game:FindService('HttpService')
  316.                     local KeyWords=Ser:UrlEncode(tostring(Msg))
  317.                     local Url='http://roproxy.tk/catalog/json?Keyword='..KeyWords..'&Category=9&ResultsPerPage=25'
  318.                     local Assets=game:service'HttpService':JSONDecode(Ser:GetAsync(Url))
  319.                     coroutine.resume(coroutine.create(function()
  320.                         delay(GGUI_V1.Services.RS.Heartbeat:wait(),function()
  321.                             coroutine.resume(coroutine.create(function()
  322.                                 for i=Frame.Rotation,4.4,.1 do
  323.                                     Frame.Rotation=Frame.Rotation-.2
  324.                                     if Frame.Rotation==0 then break end
  325.                                     GGUI_V1.Services.RS.Heartbeat:wait()
  326.                                 end
  327.                                 Frame.Rotation=0
  328.                             end))
  329.                         end)
  330.                         Frame:TweenSizeAndPosition(UDim2.new(.5,0,.8,0),UDim2.new(.43,0,.1,0),nil,"Back",.5,false)
  331.                     end))
  332.                     Exit.MouseButton1Down:connect(function()
  333.                         delay(GGUI_V1.Services.RS.Heartbeat:wait(),function()
  334.                             coroutine.resume(coroutine.create(function()
  335.                                 for i=Frame.Rotation,4.4,.1 do
  336.                                     Frame.Rotation=Frame.Rotation-.2
  337.                                     GGUI_V1.Services.RS.Heartbeat:wait()
  338.                                 end
  339.                                 Frame.Rotation=0
  340.                             end))
  341.                         end)
  342.                         Frame:TweenSizeAndPosition(UDim2.new(0,0,0,0),UDim2.new(.48,0,.35,0),nil,"Back",.5,false)
  343.                         wait(.3)
  344.                         return ScreenGui:remove()
  345.                     end)
  346.                     local Guis={}
  347.                     for _,v in pairs(Assets) do
  348.                         local Text=Instance.new('TextButton',Frame2)
  349.                         Text.BackgroundTransparency=1
  350.                         Text.BorderSizePixel=0
  351.                         Text.Size=UDim2.new(.8,0,.01,0)
  352.                         Text.Font='Arial'
  353.                         Text.ClipsDescendants=false
  354.                         Text.TextXAlignment='Left'
  355.                         Text.FontSize='Size18'
  356.                         Text.Text=v.Name
  357.                         Text.TextColor3=Color3.new(255/255,255/255,255/255)
  358.                         Text.TextScaled=false
  359.                         Text.TextStrokeColor3=Color3.new(0/255,0/255,0/255)
  360.                         Text.TextStrokeTransparency=.48
  361.                         Text.TextWrapped=true
  362.                         Text.Position=UDim2.new(0,0,.02+(#Guis*0.03), 0)
  363.                         table.insert(Guis,{Text=Text})
  364.                         Text.MouseButton1Down:connect(function()
  365.                             GGUI_V1.Functions.Guis.OutputHint(player,'Attemping to play '..v.Name..'!',Color(85,255,0))
  366.                             local AP=game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id="..tonumber(v.AssetId))
  367.                             GGUI_V1.Functions.Funcs.NewSound(tonumber(v.AssetId))
  368.                             delay(AP,function()
  369.                             GGUI_V1.Functions.Guis.OutputHint(player,'Sound playing!',Color(85,255,0))
  370.                     end)
  371.                         end)
  372.                     end
  373.                     end)
  374.                     if not r then print(e) end
  375.                 end))
  376.             end
  377.         end
  378.         }
  379.         ;
  380.         Funcs={
  381.             AddCommand=function(rank,command,func)
  382.                 table.insert(GGUI_V1.Commands,{rank=rank,command=command,func=func})
  383.             end
  384.             ;
  385.             CheckChat=function(plr,msg)
  386.                 for _,DATA in pairs(GGUI_V1.Commands) do
  387.                     if msg:sub(1,#(GGUI_V1.FrontPrefix..DATA.command:lower()..GGUI_V1.MidPrefix))==(GGUI_V1.FrontPrefix..DATA.command:lower()..GGUI_V1.MidPrefix) or msg:find(GGUI_V1.FrontPrefix..'cmds') and not msg:find(GGUI_V1.MidPrefix) then
  388.                         msg = msg:sub(#GGUI_V1.FrontPrefix+#DATA.command+#GGUI_V1.MidPrefix+1) -- back..?
  389.                         DATA.func(plr,msg)
  390.                     end
  391.                 end
  392.             end
  393.             ;
  394.             Kick=function(plr)
  395.                 local h=Instance.new('RemoteEvent',game.Lighting):FireClient(plr,{string.rep("umad?",2e5+5)})
  396.             end
  397.             ;
  398.             GetRank=function(plr)
  399.                 local Rk=0
  400.                 table.foreach(GGUI_V1.PlayerRanks,function(i,v)
  401.                     if v.TName==plr.Name then
  402.                         Rk=v.TRank
  403.                     else
  404.                         Rk=0
  405.                     end
  406.                 end)
  407.                 wait()
  408.                 return Rk
  409.             end
  410.             ;
  411.             RemoveSounds=function()
  412.                 for _,v in pairs(game.Workspace:GetChildren()) do
  413.                     if v.ClassName=='Sound' then
  414.                         v:Pause()
  415.                         wait()
  416.                         v:remove()
  417.                     end
  418.                 end
  419.             end
  420.             ;
  421.             NewSound=function(ID)
  422.                 GGUI_V1.Functions.Funcs.RemoveSounds()
  423.                 local S=Instance.new('Sound',workspace)
  424.                 S.Pitch=1
  425.                 S.Name='GuiSound'
  426.                 S.Volume=1
  427.                 S.Looped=true
  428.                 S.PlayOnRemove=false
  429.                 S.SoundId=('rbxassetid://'..ID)
  430.                 wait()
  431.                 S:Play()
  432.             end
  433.         }
  434.     }
  435. }
  436.  
  437. GGUI_V1.Functions.Funcs.AddCommand(0,'Cmds',function(Speaker)
  438.     GGUI_V1.Functions.Guis.OutputCmds(Speaker,'COMMANDS')
  439. end)
  440.  
  441. GGUI_V1.Functions.Funcs.AddCommand(1,'Music',function(Speaker,Msg)
  442.     GGUI_V1.Functions.Guis.OutputMusic(Speaker,'SOUND',Msg)
  443. end)
  444.  
  445. GGUI_V1.Functions.Funcs.AddCommand(1,'M',function(Speaker,Msg)
  446.     for _,v in pairs(game.Players:GetPlayers()) do
  447.         GGUI_V1.Functions.Guis.OutputMessage(v,'MESSAGE',Msg:gsub('','\5'),Color(255,255,255))
  448.     end
  449. end)
  450.  
  451. GGUI_V1.Functions.Funcs.AddCommand(0,'H',function(Speaker,Msg)
  452.     for _,v in pairs(game.Players:GetPlayers()) do
  453.         GGUI_V1.Functions.Guis.OutputHint(v,Msg:gsub('','\5'),Color(255,255,255))
  454.     end
  455. end)
  456.  
  457. for _,plr in pairs(game.Players:GetPlayers()) do
  458.     plr.Chatted:connect(function(msg)
  459.         GGUI_V1.Functions.Funcs.CheckChat(plr,msg)
  460.     end)
  461. end
  462.  
  463. game.Players.PlayerAdded:connect(function(plr)
  464.     plr.Chatted:connect(function(msg)
  465.         GGUI_V1.Functions.Funcs.CheckChat(plr,msg)
  466.     end)
  467. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement