Advertisement
kill21_2

Админ команды 1qlua

May 23rd, 2025
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.46 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local TweenService = game:GetService("TweenService")
  3. local UserInputService = game:GetService("UserInputService")
  4.  
  5. local player = Players.LocalPlayer
  6. local playerGui = player:WaitForChild("PlayerGui")
  7.  
  8. -- Создаем основной экран
  9. local ScreenGui = Instance.new("ScreenGui")
  10. ScreenGui.Name = "ScriptLauncher"
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12. ScreenGui.ResetOnSpawn = false
  13.  
  14. local MainFrame = Instance.new("Frame")
  15. MainFrame.Name = "MainFrame"
  16. MainFrame.Size = UDim2.new(0, 400, 0, 500)
  17. MainFrame.Position = UDim2.new(0.5, -200, 0.5, -250)
  18. MainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  19. MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 30)
  20. MainFrame.BorderSizePixel = 0
  21. MainFrame.ClipsDescendants = true
  22.  
  23. -- Эффект градиента
  24. local Gradient = Instance.new("UIGradient")
  25. Gradient.Rotation = 90
  26. Gradient.Color = ColorSequence.new({
  27. ColorSequenceKeypoint.new(0, Color3.fromRGB(40, 0, 60)),
  28. ColorSequenceKeypoint.new(1, Color3.fromRGB(10, 0, 20))
  29. })
  30. Gradient.Parent = MainFrame
  31.  
  32. -- Заголовок
  33. local Title = Instance.new("TextLabel")
  34. Title.Name = "Title"
  35. Title.Size = UDim2.new(1, 0, 0, 50)
  36. Title.Position = UDim2.new(0, 0, 0, 0)
  37. Title.BackgroundTransparency = 1
  38. Title.Text = "SCRIPT LAUNCHER"
  39. Title.TextColor3 = Color3.fromRGB(200, 150, 255)
  40. Title.Font = Enum.Font.GothamBold
  41. Title.TextSize = 24
  42. Title.Parent = MainFrame
  43.  
  44. -- Кнопка закрытия
  45. local CloseButton = Instance.new("TextButton")
  46. CloseButton.Name = "CloseButton"
  47. CloseButton.Size = UDim2.new(0, 30, 0, 30)
  48. CloseButton.Position = UDim2.new(1, -35, 0, 10)
  49. CloseButton.BackgroundColor3 = Color3.fromRGB(40, 0, 60)
  50. CloseButton.BorderSizePixel = 0
  51. CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  52. CloseButton.Text = "X"
  53. CloseButton.Font = Enum.Font.GothamBold
  54. CloseButton.TextSize = 18
  55. CloseButton.ZIndex = 2
  56. CloseButton.Parent = MainFrame
  57.  
  58. -- Эффект при наведении на кнопку закрытия
  59. CloseButton.MouseEnter:Connect(function()
  60. TweenService:Create(CloseButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(255, 50, 50)}):Play()
  61. end)
  62.  
  63. CloseButton.MouseLeave:Connect(function()
  64. TweenService:Create(CloseButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(40, 0, 60)}):Play()
  65. end)
  66.  
  67. -- Поле ввода
  68. local InputFrame = Instance.new("Frame")
  69. InputFrame.Name = "InputFrame"
  70. InputFrame.Size = UDim2.new(0.9, 0, 0, 50)
  71. InputFrame.Position = UDim2.new(0.05, 0, 0, 70)
  72. InputFrame.BackgroundColor3 = Color3.fromRGB(30, 20, 40)
  73. InputFrame.BorderSizePixel = 0
  74. InputFrame.Parent = MainFrame
  75.  
  76. local InputBox = Instance.new("TextBox")
  77. InputBox.Name = "InputBox"
  78. InputBox.Size = UDim2.new(1, 0, 1, 0)
  79. InputBox.BackgroundTransparency = 1
  80. InputBox.TextColor3 = Color3.fromRGB(200, 150, 255)
  81. InputBox.PlaceholderColor3 = Color3.fromRGB(100, 70, 120)
  82. InputBox.PlaceholderText = "Enter script name..."
  83. InputBox.Text = ""
  84. InputBox.Font = Enum.Font.Gotham
  85. InputBox.TextSize = 18
  86. InputBox.TextXAlignment = Enum.TextXAlignment.Left
  87. InputBox.Parent = InputFrame
  88.  
  89. -- Подчеркивание поля ввода
  90. local InputLine = Instance.new("Frame")
  91. InputLine.Name = "InputLine"
  92. InputLine.Size = UDim2.new(1, 0, 0, 2)
  93. InputLine.Position = UDim2.new(0, 0, 1, -2)
  94. InputLine.BackgroundColor3 = Color3.fromRGB(100, 50, 150)
  95. InputLine.BorderSizePixel = 0
  96. InputLine.Parent = InputFrame
  97.  
  98. -- Кнопка запуска
  99. local ExecuteButton = Instance.new("TextButton")
  100. ExecuteButton.Name = "ExecuteButton"
  101. ExecuteButton.Size = UDim2.new(0.9, 0, 0, 40)
  102. ExecuteButton.Position = UDim2.new(0.05, 0, 0, 130)
  103. ExecuteButton.BackgroundColor3 = Color3.fromRGB(80, 0, 120)
  104. ExecuteButton.BorderSizePixel = 0
  105. ExecuteButton.Text = "EXECUTE"
  106. ExecuteButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  107. ExecuteButton.Font = Enum.Font.GothamBold
  108. ExecuteButton.TextSize = 18
  109. ExecuteButton.Parent = MainFrame
  110.  
  111. -- Анимация кнопки запуска
  112. ExecuteButton.MouseEnter:Connect(function()
  113. TweenService:Create(ExecuteButton, TweenInfo.new(0.2), {
  114. BackgroundColor3 = Color3.fromRGB(120, 0, 180),
  115. Size = UDim2.new(0.92, 0, 0, 42),
  116. Position = UDim2.new(0.04, 0, 0, 129)
  117. }):Play()
  118. end)
  119.  
  120. ExecuteButton.MouseLeave:Connect(function()
  121. TweenService:Create(ExecuteButton, TweenInfo.new(0.2), {
  122. BackgroundColor3 = Color3.fromRGB(80, 0, 120),
  123. Size = UDim2.new(0.9, 0, 0, 40),
  124. Position = UDim2.new(0.05, 0, 0, 130)
  125. }):Play()
  126. end)
  127.  
  128. -- Список скриптов
  129. local ScriptsFrame = Instance.new("Frame")
  130. ScriptsFrame.Name = "ScriptsFrame"
  131. ScriptsFrame.Size = UDim2.new(0.9, 0, 0, 280)
  132. ScriptsFrame.Position = UDim2.new(0.05, 0, 0, 180)
  133. ScriptsFrame.BackgroundColor3 = Color3.fromRGB(25, 15, 35)
  134. ScriptsFrame.BorderSizePixel = 0
  135. ScriptsFrame.Parent = MainFrame
  136.  
  137. local ScriptsTitle = Instance.new("TextLabel")
  138. ScriptsTitle.Name = "ScriptsTitle"
  139. ScriptsTitle.Size = UDim2.new(1, 0, 0, 30)
  140. ScriptsTitle.BackgroundTransparency = 1
  141. ScriptsTitle.Text = "AVAILABLE SCRIPTS"
  142. ScriptsTitle.TextColor3 = Color3.fromRGB(180, 130, 230)
  143. ScriptsTitle.Font = Enum.Font.GothamBold
  144. ScriptsTitle.TextSize = 16
  145. ScriptsTitle.TextXAlignment = Enum.TextXAlignment.Left
  146. ScriptsTitle.Parent = ScriptsFrame
  147.  
  148. local ScriptsList = Instance.new("ScrollingFrame")
  149. ScriptsList.Name = "ScriptsList"
  150. ScriptsList.Size = UDim2.new(1, 0, 1, -30)
  151. ScriptsList.Position = UDim2.new(0, 0, 0, 30)
  152. ScriptsList.BackgroundTransparency = 1
  153. ScriptsList.ScrollBarThickness = 4
  154. ScriptsList.ScrollBarImageColor3 = Color3.fromRGB(100, 50, 150)
  155. ScriptsList.AutomaticCanvasSize = Enum.AutomaticSize.Y
  156. ScriptsList.CanvasSize = UDim2.new(0, 0, 0, 0)
  157. ScriptsList.Parent = ScriptsFrame
  158.  
  159. local UIListLayout = Instance.new("UIListLayout")
  160. UIListLayout.Padding = UDim.new(0, 5)
  161. UIListLayout.Parent = ScriptsList
  162.  
  163. -- Добавляем возможность перемещения GUI
  164. local dragging
  165. local dragInput
  166. local dragStart
  167. local startPos
  168.  
  169. local function update(input)
  170. local delta = input.Position - dragStart
  171. MainFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  172. end
  173.  
  174. MainFrame.InputBegan:Connect(function(input)
  175. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  176. dragging = true
  177. dragStart = input.Position
  178. startPos = MainFrame.Position
  179.  
  180. input.Changed:Connect(function()
  181. if input.UserInputState == Enum.UserInputState.End then
  182. dragging = false
  183. end
  184. end)
  185. end
  186. end)
  187.  
  188. MainFrame.InputChanged:Connect(function(input)
  189. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  190. dragInput = input
  191. end
  192. end)
  193.  
  194. UserInputService.InputChanged:Connect(function(input)
  195. if input == dragInput and dragging then
  196. update(input)
  197. end
  198. end)
  199.  
  200. -- Закрытие GUI
  201. CloseButton.MouseButton1Click:Connect(function()
  202. TweenService:Create(MainFrame, TweenInfo.new(0.3), {Size = UDim2.new(0, 400, 0, 0)}):Play()
  203. wait(0.3)
  204. ScreenGui:Destroy()
  205. end)
  206.  
  207. -- База данных скриптов
  208. local ScriptDatabase = {
  209. {
  210. name = "обычный скрипт",
  211. script = [[
  212. loadstring(game:HttpGet("https://pastebin.com/raw/EdUyxN7Z"))()
  213. ]]
  214. },
  215. {
  216. name = "полет",
  217. script = [[
  218. loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\40\39\104\116\116\112\115\58\47\47\103\105\115\116\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\109\101\111\122\111\110\101\89\84\47\98\102\48\51\55\100\102\102\57\102\48\97\55\48\48\49\55\51\48\52\100\100\100\54\55\102\100\99\100\51\55\48\47\114\97\119\47\101\49\52\101\55\52\102\52\50\53\98\48\54\48\100\102\53\50\51\51\52\51\99\102\51\48\98\55\56\55\48\55\52\101\98\51\99\53\100\50\47\97\114\99\101\117\115\37\50\53\50\48\120\37\50\53\50\48\102\108\121\37\50\53\50\48\50\37\50\53\50\48\111\98\102\108\117\99\97\116\111\114\39\41\44\116\114\117\101\41\41\40\41\10\10")
  219. ]]
  220. },
  221. {
  222. name = "шейдеры",
  223. script = [[
  224. loadstring(game:HttpGet('https://pastebin.com/raw/1XA5qM3D'))()
  225. ]]
  226. },
  227. {
  228. name = "чекпоинты",
  229. script = [[
  230. loadstring(game:HttpGet('https://pastebin.com/raw/rz7uUmED'))()
  231. ]]
  232. },
  233. {
  234. name = "Свободная камера",
  235. script = [[
  236. loadstring(game:HttpGet('https://pastebin.com/raw/ct8Kq5F0'))()
  237. ]]
  238. },
  239. {
  240. name = "Скорость",
  241. script = [[
  242. loadstring(game:HttpGet('https://pastebin.com/raw/Zzqq3U0u'))()
  243. ]]
  244. },
  245. {
  246. name = "Писюн",
  247. script = [[
  248. loadstring(game:HttpGet("https://pastebin.com/raw/73RsNXY2"))()
  249. ]]
  250. },
  251. {
  252. name = "сервер",
  253. script = [[
  254. loadstring(game:HttpGet("https://raw.githubusercontent.com/Syr0nix/RedFoxServerBowser/refs/heads/main/Mainlua"))()
  255. ]]
  256. },
  257. {
  258. name = "Удалитьстены",
  259. script = [[
  260. loadstring(game:HttpGet("https://pastebin.com/raw/FBKJTUyw"))())
  261. ]]
  262. },
  263. {
  264. name = "тестИнжектор",
  265. script = [[
  266. loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-UNChecker-GUI-Version-27355"))()
  267. ]]
  268. },
  269. {
  270. name = "DEX",
  271. script = [[
  272. loadstring(game:HttpGet("https://raw.githubusercontent.com/MariyaFurmanova/Library/main/dex2.0", true))()
  273. ]]
  274. },
  275. {
  276. name = "Vfly",
  277. script = [[
  278. loadstring(game:HttpGet('https://pastebin.com/raw/9bNj1EcR'))()
  279. ]]
  280. },
  281. {
  282. name = "Неведимка",
  283. script = [[
  284. loadstring(game:HttpGet("https://pastebin.com/raw/VtWhnEnm"))()
  285. ]]
  286. },
  287. {
  288. name = "Infinite Yield",
  289. script = [[
  290. loadstring(game:HttpGet("https://raw.githubusercontent.com/Infinite-Store/Infinite-Store/main/main.lua"))()
  291. ]]
  292. },
  293. {
  294. name = "Падения",
  295. script = [[
  296. loadstring(game:HttpGet('https://pastebin.com/raw/CTUaCKN1'))()
  297. ]]
  298. },
  299. {
  300. name = "TPSpeed",
  301. script = [[
  302. loadstring(game:HttpGetAsync("https://pastebin.com/raw/tumJ5guV"))()
  303. ]]
  304. },
  305. {
  306. name = "СоздатьМир",
  307. script = [[
  308. loadstring(game:HttpGetAsync("https://pastebin.com/raw/SRZJGHyq"))()
  309. ]]
  310. },
  311. {
  312. name = "ESP",
  313. script = [[
  314. loadstring(game:HttpGet('https://pastebin.com/raw/fkVSAXZ3'))()
  315. ]]
  316. },
  317. {
  318. name = "ТПклик",
  319. script = [[
  320. loadstring(game:HttpGet('https://pastebin.com/raw/icB69Hhf'))()
  321. ]]
  322. },
  323. {
  324. name = "ТП к игрокам",
  325. script = [[
  326. loadstring(game:HttpGet('https://pastebin.com/raw/z4HARAHs'))()
  327. ]]
  328. }
  329.  
  330. }
  331.  
  332. -- Функция для добавления скрипта в базу данных
  333. local function addScriptToDatabase(name, script)
  334. table.insert(ScriptDatabase, {
  335. name = name,
  336. script = script
  337. })
  338. updateScriptsList()
  339. end
  340.  
  341. -- Функция для обновления списка скриптов
  342. local function updateScriptsList()
  343. -- Очищаем список перед обновлением
  344. for _, child in ipairs(ScriptsList:GetChildren()) do
  345. if child:IsA("TextButton") then
  346. child:Destroy()
  347. end
  348. end
  349.  
  350. -- Добавляем скрипты в список
  351. for _, scriptData in ipairs(ScriptDatabase) do
  352. local scriptButton = Instance.new("TextButton")
  353. scriptButton.Name = scriptData.name
  354. scriptButton.Size = UDim2.new(1, -10, 0, 30)
  355. scriptButton.BackgroundColor3 = Color3.fromRGB(40, 20, 60)
  356. scriptButton.BorderSizePixel = 0
  357. scriptButton.Text = " " .. scriptData.name
  358. scriptButton.TextColor3 = Color3.fromRGB(200, 150, 255)
  359. scriptButton.Font = Enum.Font.Gotham
  360. scriptButton.TextSize = 16
  361. scriptButton.TextXAlignment = Enum.TextXAlignment.Left
  362. scriptButton.Parent = ScriptsList
  363.  
  364. -- Анимация при наведении
  365. scriptButton.MouseEnter:Connect(function()
  366. TweenService:Create(scriptButton, TweenInfo.new(0.2), {
  367. BackgroundColor3 = Color3.fromRGB(60, 30, 90),
  368. TextColor3 = Color3.fromRGB(230, 180, 255)
  369. }):Play()
  370. end)
  371.  
  372. scriptButton.MouseLeave:Connect(function()
  373. TweenService:Create(scriptButton, TweenInfo.new(0.2), {
  374. BackgroundColor3 = Color3.fromRGB(40, 20, 60),
  375. TextColor3 = Color3.fromRGB(200, 150, 255)
  376. }):Play()
  377. end)
  378.  
  379. -- Запуск скрипта при клике
  380. scriptButton.MouseButton1Click:Connect(function()
  381. InputBox.Text = scriptData.name
  382. end)
  383. end
  384.  
  385. -- Обновляем размер CanvasSize после добавления всех элементов
  386. ScriptsList.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
  387. end
  388.  
  389. -- Функция для выполнения скрипта
  390. local function executeScript(scriptName)
  391. for _, scriptData in ipairs(ScriptDatabase) do
  392. if scriptData.name:lower() == scriptName:lower() then
  393. local success, err = pcall(function()
  394. loadstring(scriptData.script)()
  395. end)
  396.  
  397. if not success then
  398. warn("Error executing script: " .. err)
  399. end
  400. return true
  401. end
  402. end
  403. return false
  404. end
  405.  
  406. -- Обработчик кнопки Execute
  407. ExecuteButton.MouseButton1Click:Connect(function()
  408. local scriptName = InputBox.Text
  409. if scriptName ~= "" then
  410. if not executeScript(scriptName) then
  411. warn("Script not found: " .. scriptName)
  412. end
  413. end
  414. end)
  415.  
  416. -- Обработчик нажатия Enter в поле ввода
  417. InputBox.FocusLost:Connect(function(enterPressed)
  418. if enterPressed then
  419. local scriptName = InputBox.Text
  420. if scriptName ~= "" then
  421. executeScript(scriptName)
  422. end
  423. end
  424. end)
  425.  
  426. -- Инициализация GUI
  427. updateScriptsList()
  428. MainFrame.Parent = ScreenGui
  429. ScreenGui.Parent = playerGui
  430.  
  431. -- Анимация появления
  432. MainFrame.Size = UDim2.new(0, 0, 0, 500)
  433. TweenService:Create(MainFrame, TweenInfo.new(0.5, Enum.EasingStyle.Back, Enum.EasingDirection.Out), {
  434. Size = UDim2.new(0, 400, 0, 500)
  435. }):Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement