Advertisement
kill21_2

хаб скрипт

May 4th, 2025
6,954
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.34 KB | None | 0 0
  1. -- Создаем красивый GUI
  2. local ScreenGui = Instance.new("ScreenGui")
  3. ScreenGui.Name = "PremiumGUI"
  4. ScreenGui.Parent = game.CoreGui
  5. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  6.  
  7. -- Уведомление о создании
  8. local Notification = Instance.new("Frame")
  9. local NotifCorner = Instance.new("UICorner")
  10. local NotifStroke = Instance.new("UIStroke")
  11. local NotifTitle = Instance.new("TextLabel")
  12. local NotifText = Instance.new("TextLabel")
  13.  
  14. Notification.Parent = ScreenGui
  15. Notification.BackgroundColor3 = Color3.fromRGB(40, 40, 50)
  16. Notification.Size = UDim2.new(0, 250, 0, 80)
  17. Notification.Position = UDim2.new(1, -260, 1, -90)
  18. Notification.AnchorPoint = Vector2.new(0, 1)
  19.  
  20. NotifCorner.CornerRadius = UDim.new(0, 8)
  21. NotifCorner.Parent = Notification
  22.  
  23. NotifStroke.Color = Color3.fromRGB(80, 80, 100)
  24. NotifStroke.Thickness = 2
  25. NotifStroke.Parent = Notification
  26.  
  27. NotifTitle.Parent = Notification
  28. NotifTitle.BackgroundTransparency = 1
  29. NotifTitle.Size = UDim2.new(1, -10, 0, 20)
  30. NotifTitle.Position = UDim2.new(0, 10, 0, 10)
  31. NotifTitle.Font = Enum.Font.GothamBold
  32. NotifTitle.Text = "1qlua Script Loaded"
  33. NotifTitle.TextColor3 = Color3.fromRGB(220, 220, 255)
  34. NotifTitle.TextSize = 14
  35. NotifTitle.TextXAlignment = Enum.TextXAlignment.Left
  36.  
  37. NotifText.Parent = Notification
  38. NotifText.BackgroundTransparency = 1
  39. NotifText.Size = UDim2.new(1, -10, 0, 40)
  40. NotifText.Position = UDim2.new(0, 10, 0, 30)
  41. NotifText.Font = Enum.Font.Gotham
  42. NotifText.Text = "Created for salavaaye228"
  43. NotifText.TextColor3 = Color3.fromRGB(180, 180, 200)
  44. NotifText.TextSize = 12
  45. NotifText.TextXAlignment = Enum.TextXAlignment.Left
  46. NotifText.TextYAlignment = Enum.TextYAlignment.Top
  47.  
  48. -- Анимация появления уведомления
  49. Notification.Position = UDim2.new(1, 260, 1, -90)
  50. game:GetService("TweenService"):Create(
  51. Notification,
  52. TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  53. {Position = UDim2.new(1, -260, 1, -90)}
  54. ):Play()
  55.  
  56. -- Удаление уведомления через 30 секунд
  57. task.delay(30, function()
  58. game:GetService("TweenService"):Create(
  59. Notification,
  60. TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  61. {Position = UDim2.new(1, 260, 1, -90)}
  62. ):Play()
  63. wait(0.5)
  64. Notification:Destroy()
  65. end)
  66.  
  67. -- Остальной код GUI (как в предыдущем скрипте)
  68. local MainFrame = Instance.new("Frame")
  69. local UICorner = Instance.new("UICorner")
  70. local UIStroke = Instance.new("UIStroke")
  71. local TitleBar = Instance.new("Frame")
  72. local Title = Instance.new("TextLabel")
  73. local CloseButton = Instance.new("ImageButton")
  74. local ButtonsContainer = Instance.new("Frame")
  75. local UIPadding = Instance.new("UIPadding")
  76. local UIListLayout = Instance.new("UIListLayout")
  77.  
  78. MainFrame.Parent = ScreenGui
  79. MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 40)
  80. MainFrame.Position = UDim2.new(0.05, 0, 0.25, 0)
  81. MainFrame.Size = UDim2.new(0, 220, 0, 300)
  82. MainFrame.Active = true
  83. MainFrame.Draggable = true
  84.  
  85. UICorner.Parent = MainFrame
  86. UICorner.CornerRadius = UDim.new(0, 8)
  87.  
  88. UIStroke.Parent = MainFrame
  89. UIStroke.Color = Color3.fromRGB(80, 80, 100)
  90. UIStroke.Thickness = 2
  91. UIStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
  92.  
  93. TitleBar.Parent = MainFrame
  94. TitleBar.BackgroundColor3 = Color3.fromRGB(40, 40, 50)
  95. TitleBar.Size = UDim2.new(1, 0, 0, 35)
  96. TitleBar.Position = UDim2.new(0, 0, 0, 0)
  97.  
  98. local TitleCorner = Instance.new("UICorner")
  99. TitleCorner.Parent = TitleBar
  100. TitleCorner.CornerRadius = UDim.new(0, 8)
  101. TitleCorner.Name = "TitleCorner"
  102.  
  103. Title.Parent = TitleBar
  104. Title.BackgroundTransparency = 1
  105. Title.Size = UDim2.new(0.8, 0, 1, 0)
  106. Title.Font = Enum.Font.GothamBold
  107. Title.Text = "Premium Scripts"
  108. Title.TextColor3 = Color3.fromRGB(220, 220, 255)
  109. Title.TextSize = 16
  110. Title.TextXAlignment = Enum.TextXAlignment.Left
  111. Title.Position = UDim2.new(0.05, 0, 0, 0)
  112.  
  113. CloseButton.Parent = TitleBar
  114. CloseButton.BackgroundTransparency = 1
  115. CloseButton.Size = UDim2.new(0, 20, 0, 20)
  116. CloseButton.Position = UDim2.new(0.9, 0, 0.5, -10)
  117. CloseButton.Image = "rbxassetid://3926305904"
  118. CloseButton.ImageRectOffset = Vector2.new(284, 4)
  119. CloseButton.ImageRectSize = Vector2.new(24, 24)
  120. CloseButton.MouseButton1Click:Connect(function()
  121. game:GetService("TweenService"):Create(
  122. MainFrame,
  123. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  124. {Size = UDim2.new(0, 0, 0, 0)}
  125. ):Play()
  126. wait(0.3)
  127. ScreenGui:Destroy()
  128. end)
  129.  
  130. ButtonsContainer.Parent = MainFrame
  131. ButtonsContainer.BackgroundTransparency = 1
  132. ButtonsContainer.Size = UDim2.new(1, 0, 1, -35)
  133. ButtonsContainer.Position = UDim2.new(0, 0, 0, 35)
  134.  
  135. UIPadding.Parent = ButtonsContainer
  136. UIPadding.PaddingLeft = UDim.new(0, 10)
  137. UIPadding.PaddingRight = UDim.new(0, 10)
  138. UIPadding.PaddingTop = UDim.new(0, 10)
  139. UIPadding.PaddingBottom = UDim.new(0, 10)
  140.  
  141. UIListLayout.Parent = ButtonsContainer
  142. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  143. UIListLayout.Padding = UDim.new(0, 10)
  144.  
  145. local function CreateButton(text, color)
  146. local Button = Instance.new("TextButton")
  147. local ButtonCorner = Instance.new("UICorner")
  148. local ButtonStroke = Instance.new("UIStroke")
  149.  
  150. Button.Name = text .. "Button"
  151. Button.Parent = ButtonsContainer
  152. Button.BackgroundColor3 = color
  153. Button.Size = UDim2.new(1, 0, 0, 40)
  154. Button.Font = Enum.Font.GothamSemibold
  155. Button.Text = text
  156. Button.TextColor3 = Color3.fromRGB(255, 255, 255)
  157. Button.TextSize = 14
  158. Button.AutoButtonColor = false
  159.  
  160. local originalColor = Button.BackgroundColor3
  161. local hoverColor = Color3.new(
  162. math.clamp(originalColor.R * 1.2, 0, 1),
  163. math.clamp(originalColor.G * 1.2, 0, 1),
  164. math.clamp(originalColor.B * 1.2, 0, 1)
  165. )
  166.  
  167. Button.MouseEnter:Connect(function()
  168. game:GetService("TweenService"):Create(
  169. Button,
  170. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  171. {BackgroundColor3 = hoverColor}
  172. ):Play()
  173. end)
  174.  
  175. Button.MouseLeave:Connect(function()
  176. game:GetService("TweenService"):Create(
  177. Button,
  178. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  179. {BackgroundColor3 = originalColor}
  180. ):Play()
  181. end)
  182.  
  183. Button.MouseButton1Down:Connect(function()
  184. game:GetService("TweenService"):Create(
  185. Button,
  186. TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  187. {BackgroundColor3 = Color3.fromRGB(100, 100, 100)}
  188. ):Play()
  189. end)
  190.  
  191. Button.MouseButton1Up:Connect(function()
  192. game:GetService("TweenService"):Create(
  193. Button,
  194. TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  195. {BackgroundColor3 = hoverColor}
  196. ):Play()
  197. end)
  198.  
  199. ButtonCorner.Parent = Button
  200. ButtonCorner.CornerRadius = UDim.new(0, 6)
  201.  
  202. ButtonStroke.Parent = Button
  203. ButtonStroke.Color = Color3.fromRGB(60, 60, 80)
  204. ButtonStroke.Thickness = 1.5
  205.  
  206. return Button
  207. end
  208.  
  209. local FlyButton = CreateButton("Fly", Color3.fromRGB(80, 120, 200))
  210. local WorldButton = CreateButton("Create World", Color3.fromRGB(200, 100, 150))
  211. local TeleportButton = CreateButton("Teleport to Players", Color3.fromRGB(150, 100, 200))
  212. local ESPButton = CreateButton("ESP", Color3.fromRGB(100, 200, 150))
  213. local FarmButton = CreateButton("Auto Farm Crates", Color3.fromRGB(200, 150, 100))
  214.  
  215. FlyButton.MouseButton1Click:Connect(function()
  216. loadstring(game:HttpGet('https://pastebin.com/raw/9bNj1EcR'))()
  217. end)
  218.  
  219. WorldButton.MouseButton1Click:Connect(function()
  220. loadstring(game:HttpGetAsync("https://pastebin.com/raw/SRZJGHyq"))()
  221. end)
  222.  
  223. TeleportButton.MouseButton1Click:Connect(function()
  224. loadstring(game:HttpGet('https://pastebin.com/raw/z4HARAHs'))()
  225. end)
  226.  
  227. ESPButton.MouseButton1Click:Connect(function()
  228. loadstring(game:HttpGet('https://pastebin.com/raw/r97SAaUa'))()
  229. end)
  230.  
  231. FarmButton.MouseButton1Click:Connect(function()
  232. loadstring(game:HttpGetAsync("https://pastebin.com/raw/HNwdknXk"))()
  233. end)
  234.  
  235. MainFrame.Size = UDim2.new(0, 0, 0, 0)
  236. game:GetService("TweenService"):Create(
  237. MainFrame,
  238. TweenInfo.new(0.5, Enum.EasingStyle.Back, Enum.EasingDirection.Out),
  239. {Size = UDim2.new(0, 220, 0, 300)}
  240. ):Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement