JumpYScriptsz

AdminGUI

May 30th, 2022 (edited)
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 16.30 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local EpicCheatGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local speedPlus = Instance.new("TextButton")
  9. local speedMinus = Instance.new("TextButton")
  10. local curSpeed = Instance.new("TextLabel")
  11. local curJump = Instance.new("TextLabel")
  12. local JumpMinus = Instance.new("TextButton")
  13. local JumpPlus = Instance.new("TextButton")
  14. local trans = Instance.new("TextButton")
  15. local rainbowify = Instance.new("TextButton")
  16. local noclip = Instance.new("TextButton")
  17. local ESP = Instance.new("TextButton")
  18. local aimbot = Instance.new("TextButton")
  19. local invis = Instance.new("TextButton")
  20. local infJump = Instance.new("TextButton")
  21. local TextLabel = Instance.new("TextLabel")
  22.  
  23. --Properties:
  24.  
  25. EpicCheatGui.Name = "EpicCheatGui"
  26. EpicCheatGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  27. EpicCheatGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  28. EpicCheatGui.ResetOnSpawn = true
  29.  
  30. Frame.Parent = EpicCheatGui
  31. Frame.AnchorPoint = Vector2.new(0.5, 0.5)
  32. Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  33. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  34. Frame.BorderSizePixel = 4
  35. Frame.Position = UDim2.new(0.499631017, 0, 0.498582065, 0)
  36. Frame.Size = UDim2.new(0, 400, 0, 332)
  37.  
  38. speedPlus.Name = "speedPlus"
  39. speedPlus.Parent = Frame
  40. speedPlus.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  41. speedPlus.BorderColor3 = Color3.fromRGB(0, 0, 0)
  42. speedPlus.BorderSizePixel = 3
  43. speedPlus.Position = UDim2.new(0.0149999997, 0, 0.0764596835, 0)
  44. speedPlus.Size = UDim2.new(0, 189, 0, 33)
  45. speedPlus.Font = Enum.Font.Sarpanch
  46. speedPlus.Text = "SPEED +"
  47. speedPlus.TextColor3 = Color3.fromRGB(255, 255, 255)
  48. speedPlus.TextSize = 23.000
  49. speedPlus.TextStrokeTransparency = 0.000
  50. speedPlus.TextWrapped = true
  51.  
  52. speedMinus.Name = "speedMinus"
  53. speedMinus.Parent = Frame
  54. speedMinus.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  55. speedMinus.BorderColor3 = Color3.fromRGB(0, 0, 0)
  56. speedMinus.BorderSizePixel = 3
  57. speedMinus.Position = UDim2.new(0.511357307, 0, 0.0764596835, 0)
  58. speedMinus.Size = UDim2.new(0, 189, 0, 33)
  59. speedMinus.Font = Enum.Font.Sarpanch
  60. speedMinus.Text = "SPEED -"
  61. speedMinus.TextColor3 = Color3.fromRGB(255, 255, 255)
  62. speedMinus.TextSize = 23.000
  63. speedMinus.TextStrokeTransparency = 0.000
  64. speedMinus.TextWrapped = true
  65.  
  66. curSpeed.Name = "curSpeed"
  67. curSpeed.Parent = Frame
  68. curSpeed.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  69. curSpeed.BorderColor3 = Color3.fromRGB(0, 0, 0)
  70. curSpeed.BorderSizePixel = 3
  71. curSpeed.Position = UDim2.new(0.0164999384, 0, 0.806839824, 0)
  72. curSpeed.Size = UDim2.new(0, 60, 0, 57)
  73. curSpeed.Font = Enum.Font.Sarpanch
  74. curSpeed.Text = "SP:"
  75. curSpeed.TextColor3 = Color3.fromRGB(255, 255, 255)
  76. curSpeed.TextSize = 20.000
  77. curSpeed.TextStrokeTransparency = 0.000
  78.  
  79. curJump.Name = "curJump"
  80. curJump.Parent = Frame
  81. curJump.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  82. curJump.BorderColor3 = Color3.fromRGB(0, 0, 0)
  83. curJump.BorderSizePixel = 3
  84. curJump.Position = UDim2.new(0.0164999384, 0, 0.601723671, 0)
  85. curJump.Size = UDim2.new(0, 60, 0, 57)
  86. curJump.Font = Enum.Font.Sarpanch
  87. curJump.Text = "JP: "
  88. curJump.TextColor3 = Color3.fromRGB(255, 255, 255)
  89. curJump.TextSize = 20.000
  90. curJump.TextStrokeTransparency = 0.000
  91.  
  92. JumpMinus.Name = "JumpMinus"
  93. JumpMinus.Parent = Frame
  94. JumpMinus.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  95. JumpMinus.BorderColor3 = Color3.fromRGB(0, 0, 0)
  96. JumpMinus.BorderSizePixel = 3
  97. JumpMinus.Position = UDim2.new(0.511357307, 0, 0.207869932, 0)
  98. JumpMinus.Size = UDim2.new(0, 189, 0, 33)
  99. JumpMinus.Font = Enum.Font.Sarpanch
  100. JumpMinus.Text = "JUMP -"
  101. JumpMinus.TextColor3 = Color3.fromRGB(255, 255, 255)
  102. JumpMinus.TextSize = 23.000
  103. JumpMinus.TextStrokeTransparency = 0.000
  104. JumpMinus.TextWrapped = true
  105.  
  106. JumpPlus.Name = "JumpPlus"
  107. JumpPlus.Parent = Frame
  108. JumpPlus.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  109. JumpPlus.BorderColor3 = Color3.fromRGB(0, 0, 0)
  110. JumpPlus.BorderSizePixel = 3
  111. JumpPlus.Position = UDim2.new(0.0150000006, 0, 0.207869932, 0)
  112. JumpPlus.Size = UDim2.new(0, 189, 0, 33)
  113. JumpPlus.Font = Enum.Font.Sarpanch
  114. JumpPlus.Text = "JUMP +"
  115. JumpPlus.TextColor3 = Color3.fromRGB(255, 255, 255)
  116. JumpPlus.TextSize = 23.000
  117. JumpPlus.TextStrokeTransparency = 0.000
  118. JumpPlus.TextWrapped = true
  119.  
  120. trans.Name = "trans"
  121. trans.Parent = Frame
  122. trans.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  123. trans.BorderColor3 = Color3.fromRGB(0, 0, 0)
  124. trans.BorderSizePixel = 3
  125. trans.Position = UDim2.new(0.0149999997, 0, 0.340585947, 0)
  126. trans.Size = UDim2.new(0, 387, 0, 33)
  127. trans.Font = Enum.Font.Sarpanch
  128. trans.Text = "TRANSPARENCY: OFF"
  129. trans.TextColor3 = Color3.fromRGB(255, 255, 255)
  130. trans.TextSize = 23.000
  131. trans.TextStrokeTransparency = 0.000
  132. trans.TextWrapped = true
  133.  
  134. rainbowify.Name = "rainbowify"
  135. rainbowify.Parent = Frame
  136. rainbowify.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  137. rainbowify.BorderColor3 = Color3.fromRGB(0, 0, 0)
  138. rainbowify.BorderSizePixel = 3
  139. rainbowify.Position = UDim2.new(0.0149999997, 0, 0.468192756, 0)
  140. rainbowify.Size = UDim2.new(0, 387, 0, 33)
  141. rainbowify.Font = Enum.Font.Sarpanch
  142. rainbowify.Text = "RAINBOW: OFF"
  143. rainbowify.TextColor3 = Color3.fromRGB(255, 255, 255)
  144. rainbowify.TextSize = 23.000
  145. rainbowify.TextStrokeTransparency = 0.000
  146. rainbowify.TextWrapped = true
  147.  
  148. noclip.Name = "noclip"
  149. noclip.Parent = Frame
  150. noclip.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  151. noclip.BorderColor3 = Color3.fromRGB(0, 0, 0)
  152. noclip.BorderSizePixel = 3
  153. noclip.Position = UDim2.new(0.601160765, 0, 0.600068331, 0)
  154. noclip.Size = UDim2.new(0, 151, 0, 33)
  155. noclip.Font = Enum.Font.Sarpanch
  156. noclip.Text = "NOCLIP: OFF"
  157. noclip.TextColor3 = Color3.fromRGB(255, 255, 255)
  158. noclip.TextSize = 23.000
  159. noclip.TextStrokeTransparency = 0.000
  160. noclip.TextWrapped = true
  161.  
  162. ESP.Name = "ESP"
  163. ESP.Parent = Frame
  164. ESP.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  165. ESP.BorderColor3 = Color3.fromRGB(0, 0, 0)
  166. ESP.BorderSizePixel = 3
  167. ESP.Position = UDim2.new(0.193857267, 0, 0.600068331, 0)
  168. ESP.Size = UDim2.new(0, 151, 0, 33)
  169. ESP.Font = Enum.Font.Sarpanch
  170. ESP.Text = "ESP: OFF"
  171. ESP.TextColor3 = Color3.fromRGB(255, 255, 255)
  172. ESP.TextSize = 23.000
  173. ESP.TextStrokeTransparency = 0.000
  174. ESP.TextWrapped = true
  175.  
  176. aimbot.Name = "aimbot"
  177. aimbot.Parent = Frame
  178. aimbot.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  179. aimbot.BorderColor3 = Color3.fromRGB(0, 0, 0)
  180. aimbot.BorderSizePixel = 3
  181. aimbot.Position = UDim2.new(0.193857267, 0, 0.738957167, 0)
  182. aimbot.Size = UDim2.new(0, 151, 0, 33)
  183. aimbot.Font = Enum.Font.Sarpanch
  184. aimbot.Text = "AIMBOT: OFF"
  185. aimbot.TextColor3 = Color3.fromRGB(255, 255, 255)
  186. aimbot.TextSize = 23.000
  187. aimbot.TextStrokeTransparency = 0.000
  188. aimbot.TextWrapped = true
  189.  
  190. invis.Name = "invis"
  191. invis.Parent = Frame
  192. invis.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  193. invis.BorderColor3 = Color3.fromRGB(0, 0, 0)
  194. invis.BorderSizePixel = 3
  195. invis.Position = UDim2.new(0.194000006, 0, 0.878000021, 0)
  196. invis.Size = UDim2.new(0, 151, 0, 33)
  197. invis.Font = Enum.Font.Sarpanch
  198. invis.Text = "INVISIBILITY: OFF"
  199. invis.TextColor3 = Color3.fromRGB(255, 255, 255)
  200. invis.TextSize = 23.000
  201. invis.TextStrokeTransparency = 0.000
  202. invis.TextWrapped = true
  203.  
  204. infJump.Name = "infJump"
  205. infJump.Parent = Frame
  206. infJump.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  207. infJump.BorderColor3 = Color3.fromRGB(0, 0, 0)
  208. infJump.BorderSizePixel = 3
  209. infJump.Position = UDim2.new(0.598857284, 0, 0.738957167, 0)
  210. infJump.Size = UDim2.new(0, 151, 0, 33)
  211. infJump.Font = Enum.Font.Sarpanch
  212. infJump.Text = "INF JUMP: OFF"
  213. infJump.TextColor3 = Color3.fromRGB(255, 255, 255)
  214. infJump.TextSize = 23.000
  215. infJump.TextStrokeTransparency = 0.000
  216. infJump.TextWrapped = true
  217.  
  218. TextLabel.Parent = Frame
  219. TextLabel.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  220. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  221. TextLabel.BorderSizePixel = 3
  222. TextLabel.Position = UDim2.new(0.600000024, 0, 0.878000021, 0)
  223. TextLabel.Size = UDim2.new(0, 150, 0, 33)
  224. TextLabel.Font = Enum.Font.Roboto
  225. TextLabel.Text = "Created by radicore15742"
  226. TextLabel.TextColor3 = Color3.fromRGB(0, 255, 255)
  227. TextLabel.TextScaled = true
  228. TextLabel.TextSize = 14.000
  229. TextLabel.TextWrapped = true
  230.  
  231. -- Scripts:
  232.  
  233. local function ONID_fake_script() -- Frame.ButtonHub
  234.     local script = Instance.new('LocalScript', Frame)
  235.  
  236.     wait()
  237.     local plr = game.Players.LocalPlayer
  238.     local hum = plr.Character.Humanoid
  239.     local p = script.Parent
  240.     local colour = p.BackgroundColor3
  241.     local Cam = workspace.CurrentCamera
  242.    
  243.    
  244.     local runService = game:GetService('RunService')
  245.     local UIS = game:GetService('UserInputService')
  246.     local Stepped
  247.     local function Action(Object, Function)
  248.         if Object ~= nil then
  249.             Function(Object);
  250.         end
  251.     end
  252.     i=8
  253.    
  254.     local deb1 = true
  255.     local deb2 = true
  256.     local deb3 = true
  257.     local deb4 = true
  258.     local deb5 = true
  259.     local deb6 = true
  260.     local deb7 = true
  261.    
  262.     p.curSpeed.Text = "SP: "..hum.WalkSpeed
  263.     p.curJump.Text = "JP: "..hum.JumpPower
  264.    
  265.     function transparency(bool)
  266.         if bool == "ON" then
  267.             for i,v in pairs(p:GetDescendants()) do
  268.                 if v.ClassName == "TextButton" or v.ClassName == "TextLabel" or v.ClassName == "Frame" then
  269.                     p.Transparency = .4
  270.                     v.Transparency = .4
  271.                     p.trans.Text = "TRANSPARENCY: "..bool
  272.                 end
  273.             end
  274.         else
  275.             for i,v in pairs(p:GetDescendants()) do
  276.                 if v.ClassName == "TextButton" or v.ClassName == "TextLabel" or v.ClassName == "Frame" then
  277.                     p.Transparency = 0
  278.                     v.Transparency = 0
  279.                     p.trans.Text = "TRANSPARENCY: "..bool
  280.                 end
  281.             end
  282.         end
  283.     end
  284.    
  285.     p.speedMinus.MouseButton1Click:Connect(function()
  286.         hum.WalkSpeed = hum.WalkSpeed - i
  287.         p.curSpeed.Text = "SP: "..hum.WalkSpeed
  288.     end)
  289.     p.speedPlus.MouseButton1Click:Connect(function()
  290.         hum.WalkSpeed = hum.WalkSpeed + i
  291.         p.curSpeed.Text = "SP: "..hum.WalkSpeed
  292.     end)
  293.     p.JumpMinus.MouseButton1Click:Connect(function()
  294.         hum.JumpPower = hum.JumpPower - i*1.5
  295.         p.curJump.Text = "JP: "..hum.JumpPower
  296.     end)
  297.     p.JumpPlus.MouseButton1Click:Connect(function()
  298.         hum.JumpPower = hum.JumpPower + i*1.5
  299.         p.curJump.Text = "JP: "..hum.JumpPower
  300.     end)
  301.     p.trans.MouseButton1Click:Connect(function()
  302.         if deb1 == true then
  303.             transparency("ON")
  304.             deb1 = false
  305.         else
  306.             transparency("OFF")
  307.             deb1 = true
  308.         end
  309.     end)
  310.    
  311.     p.rainbowify.MouseButton1Click:Connect(function()
  312.         if deb2 == true then
  313.             p.rainbowify.Text = "RAINBOW: ON"
  314.             p.Rainbow.Disabled = false
  315.             deb2 = false
  316.         else
  317.             p.rainbowify.Text = "RAINBOW: OFF"
  318.             p.Rainbow.Disabled = true
  319.             p.BackgroundColor3 = colour
  320.             deb2 = true
  321.         end
  322.     end)
  323.    
  324.     p.noclip.MouseButton1Click:Connect(function()
  325.         if deb3 == true then
  326.             Stepped = runService.Stepped:Connect(function()
  327.                 game.Players.LocalPlayer.Character:FindFirstChild("Head").CanCollide = false
  328.                 game.Players.LocalPlayer.Character:FindFirstChild("Torso").CanCollide = false
  329.                 deb3 = false
  330.             end)
  331.             p.noclip.Text = "NOCLIP: ON"
  332.         else
  333.             Stepped:Disconnect()
  334.             p.noclip.Text = "NOCLIP: OFF"
  335.             deb3 = true
  336.         end
  337.     end)
  338.    
  339.     _G.JumpHeight = 50
  340.    
  341.     p.infJump.MouseButton1Click:Connect(function()
  342.         if deb4 == true then
  343.             UIS.InputBegan:connect(function(UserInput)
  344.                 if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  345.                     Action(plr.Character.Humanoid, function(self)
  346.                         if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  347.                             Action(self.Parent.HumanoidRootPart, function(self)
  348.                                 self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  349.                             end)
  350.                         end
  351.                     end)
  352.                 end
  353.             end)
  354.             p.infJump.Text = "INF JUMP: ON"
  355.             deb4 = false
  356.         else
  357.             p.infJump.Text = "INF JUMP: OFF"
  358.             deb4 = true
  359.         end
  360.     end)
  361.    
  362.     _G.aimbot = false
  363.     local hotkey = true
  364.     local state = false
  365.     function lookAt(target, eye)
  366.         Cam.CFrame = CFrame.new(target, eye)
  367.     end
  368.     function getClosestPlayerToCursor(trg_part)
  369.         local nearest = nil
  370.         local last = math.huge
  371.         for i,v in pairs(game.Players:GetPlayers()) do
  372.             if v ~= game.Players.LocalPlayer and game.Players.LocalPlayer.Character and v.Character and v.Character:FindFirstChild(trg_part) then
  373.                 if game.Players.LocalPlayer.Character:FindFirstChild(trg_part) then
  374.                     local ePos, vissss = workspace.CurrentCamera:WorldToViewportPoint(v.Character[trg_part].Position)
  375.                     local AccPos = Vector2.new(ePos.x, ePos.y)
  376.                     local mousePos = Vector2.new(workspace.CurrentCamera.ViewportSize.x / 2, workspace.CurrentCamera.ViewportSize.y / 2)
  377.                     local distance = (AccPos - mousePos).magnitude
  378.                     if distance < last and vissss and hotkey and distance < 400 then
  379.                         last = distance
  380.                         nearest = v
  381.                     end
  382.                 end
  383.             end
  384.         end
  385.         return nearest
  386.     end
  387.    
  388.     p.aimbot.MouseButton1Down:Connect(function()
  389.         state = not state
  390.         if state then
  391.             p.aimbot.Text = "AIMBOT: ON"
  392.             Stepped = runService.RenderStepped:Connect(function()
  393.                 local closest = getClosestPlayerToCursor("Head")
  394.                 if state and closest and closest.Character:FindFirstChild("Head") then
  395.                     lookAt(Cam.CFrame.p, closest.Character:FindFirstChild("Head").Position)
  396.                 end
  397.             end)
  398.         else
  399.             Stepped:Disconnect()
  400.             p.aimbot.Text = "AIMBOT: OFF"
  401.         end
  402.     end)
  403.    
  404.     sof = 1
  405.     p.ESP.MouseButton1Click:Connect(function()
  406.         if deb5 == true then
  407.             Stepped:Disconnect()
  408.             p.ESP.Text = "ESP: ON"
  409.             local gui = Instance.new("BillboardGui")
  410.             local esp = Instance.new("Frame",gui) ---- new instances to make the billboard gui and the textlabel
  411.             gui.Name = "CrackedEsp"; ---- properties of the esp
  412.             gui.ResetOnSpawn = false
  413.             gui.AlwaysOnTop = true
  414.             gui.LightInfluence = 0
  415.             gui.Size = UDim2.new(1.75, 0, 1.75, 0)
  416.             esp.BackgroundColor3 = Color3.fromRGB(255, 0, 100)
  417.             esp.Size = UDim2.new(sof,sof,sof,sof)
  418.             esp.BorderSizePixel = 0
  419.             Stepped = runService.RenderStepped:Connect(function() ---- loops faster than a while loop :)
  420.                 for i,v in pairs (game:GetService("Players"):GetPlayers()) do
  421.                     if v ~= game:GetService("Players").LocalPlayer and v.Character.Head:FindFirstChild("CrackedEsp")==nil  then -- craeting checks for team check, local player etc
  422.                         gui:Clone().Parent = v.Character.Head
  423.                     end
  424.                 end
  425.             end)
  426.             deb5 = false
  427.         else
  428.             deb5 = true
  429.             Stepped:Disconnect()
  430.             Stepped = runService.RenderStepped:Connect(function() ---- loops faster than a while loop :)
  431.                 for i,v in pairs (game:GetService("Players"):GetPlayers()) do
  432.                     if v ~= game:GetService("Players").LocalPlayer and v.Character.Head:FindFirstChild("CrackedEsp") then -- craeting checks for team check, local player etc
  433.                         v.Character.Head:FindFirstChild("CrackedEsp"):Destroy()
  434.                     end
  435.                 end
  436.             end)
  437.             p.ESP.Text = "ESP: OFF"
  438.         end
  439.     end)
  440.    
  441.     p.invis.MouseButton1Click:Connect(function()
  442.         p.invis.Text = "NOT FUNCTIONAL"
  443.         wait(1)
  444.         p.invis.Text = "INVISIBILITY: OFF"
  445.     end)
  446. end
  447. coroutine.wrap(ONID_fake_script)()
  448. -- Frame.Rainbow is disabled.
  449. local function AMKPKVT_fake_script() -- Frame.Dragify
  450.     local script = Instance.new('LocalScript', Frame)
  451.  
  452.     local UIS = game:GetService("UserInputService")
  453.     function dragify(Frame)
  454.         dragToggle = nil
  455.         local dragSpeed = 0.7
  456.         dragInput = nil
  457.         dragStart = nil
  458.         local dragPos = nil
  459.         function updateInput(input)
  460.             local Delta = input.Position - dragStart
  461.             local Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  462.             game:GetService("TweenService"):Create(Frame, TweenInfo.new(0.30), {Position = Position}):Play()
  463.         end
  464.         Frame.InputBegan:Connect(function(input)
  465.             if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and UIS:GetFocusedTextBox() == nil then
  466.                 dragToggle = true
  467.                 dragStart = input.Position
  468.                 startPos = Frame.Position
  469.                 input.Changed:Connect(function()
  470.                     if input.UserInputState == Enum.UserInputState.End then
  471.                         dragToggle = false
  472.                     end
  473.                 end)
  474.             end
  475.         end)
  476.         Frame.InputChanged:Connect(function(input)
  477.             if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  478.                 dragInput = input
  479.             end
  480.         end)
  481.         game:GetService("UserInputService").InputChanged:Connect(function(input)
  482.             if input == dragInput and dragToggle then
  483.                 updateInput(input)
  484.             end
  485.         end)
  486.     end
  487.    
  488.     dragify(script.Parent)
  489. end
  490. coroutine.wrap(AMKPKVT_fake_script)()
  491.  
Add Comment
Please, Sign In to add comment