Advertisement
kill21_2

выкладивать скрипты

May 24th, 2025 (edited)
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.94 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local LocalPlayer = Players.LocalPlayer
  3. local PlayerGui = LocalPlayer:WaitForChild("PlayerGui")
  4. local TweenService = game:GetService("TweenService")
  5. local RunService = game:GetService("RunService")
  6.  
  7.  
  8. local ScreenGui = Instance.new("ScreenGui")
  9. ScreenGui.Name = "ScriptHubGUI"
  10. ScreenGui.ResetOnSpawn = false
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12. ScreenGui.Parent = PlayerGui
  13.  
  14. local Background = Instance.new("Frame")
  15. Background.Name = "Background"
  16. Background.Size = UDim2.new(1, 0, 1, 0)
  17. Background.BackgroundColor3 = Color3.new(0, 0, 0)
  18. Background.BackgroundTransparency = 1
  19. Background.ZIndex = 0
  20. Background.Parent = ScreenGui
  21.  
  22. local MainFrame = Instance.new("Frame")
  23. MainFrame.Name = "MainFrame"
  24. MainFrame.Size = UDim2.new(0, 500, 0, 400)
  25. MainFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  26. MainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  27. MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 30)
  28. MainFrame.BorderSizePixel = 0
  29. MainFrame.Active = true
  30. MainFrame.Draggable = true
  31. MainFrame.Selectable = true
  32. MainFrame.Visible = false
  33. MainFrame.Parent = ScreenGui
  34.  
  35.  
  36. local UICorner = Instance.new("UICorner")
  37. UICorner.CornerRadius = UDim.new(0, 12)
  38. UICorner.Parent = MainFrame
  39.  
  40. local UIStroke = Instance.new("UIStroke")
  41. UIStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
  42. UIStroke.Color = Color3.fromRGB(100, 50, 150)
  43. UIStroke.LineJoinMode = Enum.LineJoinMode.Round
  44. UIStroke.Thickness = 2
  45. UIStroke.Transparency = 1
  46. UIStroke.Parent = MainFrame
  47.  
  48. local Header = Instance.new("Frame")
  49. Header.Name = "Header"
  50. Header.Size = UDim2.new(1, 0, 0, 40)
  51. Header.Position = UDim2.new(0, 0, 0, 0)
  52. Header.BackgroundColor3 = Color3.fromRGB(30, 20, 40)
  53. Header.BorderSizePixel = 0
  54. Header.Parent = MainFrame
  55.  
  56. local UICornerHeader = UICorner:Clone()
  57. UICornerHeader.CornerRadius = UDim.new(0, 12)
  58. UICornerHeader.Parent = Header
  59.  
  60. local Title = Instance.new("TextLabel")
  61. Title.Name = "Title"
  62. Title.Size = UDim2.new(0, 200, 1, 0)
  63. Title.Position = UDim2.new(0.5, -100, 0, 0)
  64. Title.BackgroundTransparency = 1
  65. Title.Text = "1qlua Script Hub"
  66. Title.Font = Enum.Font.GothamBold
  67. Title.TextColor3 = Color3.fromRGB(200, 180, 255)
  68. Title.TextSize = 18
  69. Title.TextTransparency = 1
  70. Title.Parent = Header
  71.  
  72. local CloseButton = Instance.new("TextButton")
  73. CloseButton.Name = "CloseButton"
  74. CloseButton.Size = UDim2.new(0, 30, 0, 30)
  75. CloseButton.Position = UDim2.new(1, -35, 0.5, -15)
  76. CloseButton.BackgroundColor3 = Color3.fromRGB(50, 30, 60)
  77. CloseButton.BorderSizePixel = 0
  78. CloseButton.Text = "X"
  79. CloseButton.Font = Enum.Font.GothamBold
  80. CloseButton.TextColor3 = Color3.fromRGB(200, 180, 255)
  81. CloseButton.TextSize = 16
  82. CloseButton.TextTransparency = 1
  83. CloseButton.Parent = Header
  84.  
  85. local UICornerClose = UICorner:Clone()
  86. UICornerClose.Parent = CloseButton
  87.  
  88. CloseButton.MouseButton1Click:Connect(function()
  89.  
  90. TweenService:Create(MainFrame, TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {
  91. Size = UDim2.new(0, 0, 0, 0)
  92. }):Play()
  93.  
  94. TweenService:Create(Background, TweenInfo.new(0.3), {
  95. BackgroundTransparency = 1
  96. }):Play()
  97.  
  98. wait(0.3)
  99. ScreenGui:Destroy()
  100. end)
  101.  
  102. local TopPanel = Instance.new("Frame")
  103. TopPanel.Name = "TopPanel"
  104. TopPanel.Size = UDim2.new(1, -20, 0, 40)
  105. TopPanel.Position = UDim2.new(0, 10, 0, 50)
  106. TopPanel.BackgroundColor3 = Color3.fromRGB(30, 25, 40)
  107. TopPanel.BorderSizePixel = 0
  108. TopPanel.BackgroundTransparency = 1
  109. TopPanel.Parent = MainFrame
  110.  
  111. local UICornerTop = UICorner:Clone()
  112. UICornerTop.Parent = TopPanel
  113.  
  114. local SearchBox = Instance.new("TextBox")
  115. SearchBox.Name = "SearchBox"
  116. SearchBox.Size = UDim2.new(0.7, -10, 0, 30)
  117. SearchBox.Position = UDim2.new(0, 10, 0.5, -15)
  118. SearchBox.BackgroundColor3 = Color3.fromRGB(40, 35, 60)
  119. SearchBox.BorderSizePixel = 0
  120. SearchBox.Text = ""
  121. SearchBox.PlaceholderText = "Поиск скриптов..."
  122. SearchBox.Font = Enum.Font.Gotham
  123. SearchBox.TextColor3 = Color3.fromRGB(200, 180, 255)
  124. SearchBox.TextSize = 14
  125. SearchBox.TextTransparency = 1
  126. SearchBox.Parent = TopPanel
  127.  
  128. local UICornerSearch = UICorner:Clone()
  129. UICornerSearch.Parent = SearchBox
  130.  
  131. local ProfileButton = Instance.new("ImageButton")
  132. ProfileButton.Name = "ProfileButton"
  133. ProfileButton.Size = UDim2.new(0, 30, 0, 30)
  134. ProfileButton.Position = UDim2.new(1, -40, 0.5, -15)
  135. ProfileButton.BackgroundColor3 = Color3.fromRGB(60, 40, 80)
  136. ProfileButton.Image = "rbxassetid://7733960981"
  137. ProfileButton.ImageRectOffset = Vector2.new(124, 364)
  138. ProfileButton.ImageRectSize = Vector2.new(36, 36)
  139. ProfileButton.ImageTransparency = 1
  140. ProfileButton.Parent = TopPanel
  141.  
  142. local UICornerProfile = UICorner:Clone()
  143. UICornerProfile.Parent = ProfileButton
  144.  
  145. ProfileButton.MouseButton1Click:Connect(function()
  146. loadstring(game:HttpGet("https://pastebin.com/raw/nGzCXHHN"))()
  147. end)
  148.  
  149.  
  150. local PostsContainer = Instance.new("ScrollingFrame")
  151. PostsContainer.Name = "PostsContainer"
  152. PostsContainer.Size = UDim2.new(1, -20, 1, -100)
  153. PostsContainer.Position = UDim2.new(0, 10, 0, 100)
  154. PostsContainer.BackgroundTransparency = 1
  155. PostsContainer.BorderSizePixel = 0
  156. PostsContainer.ScrollBarThickness = 5
  157. PostsContainer.ScrollBarImageColor3 = Color3.fromRGB(100, 50, 150)
  158. PostsContainer.AutomaticCanvasSize = Enum.AutomaticSize.Y
  159. PostsContainer.ScrollBarImageTransparency = 1
  160. PostsContainer.Parent = MainFrame
  161.  
  162. local PostsLayout = Instance.new("UIListLayout")
  163. PostsLayout.Padding = UDim.new(0, 10)
  164. PostsLayout.Parent = PostsContainer
  165.  
  166. local function CreatePost(postData)
  167. local PostFrame = Instance.new("Frame")
  168. PostFrame.Name = "PostFrame"
  169. PostFrame.Size = UDim2.new(1, 0, 0, 120)
  170. PostFrame.BackgroundColor3 = Color3.fromRGB(40, 35, 60)
  171. PostFrame.BorderSizePixel = 0
  172. PostFrame.BackgroundTransparency = 1
  173. PostFrame.Parent = PostsContainer
  174.  
  175. local UICornerPost = UICorner:Clone()
  176. UICornerPost.Parent = PostFrame
  177.  
  178. local UIStrokePost = UIStroke:Clone()
  179. UIStrokePost.Transparency = 1
  180. UIStrokePost.Parent = PostFrame
  181.  
  182. local TitleLabel = Instance.new("TextLabel")
  183. TitleLabel.Name = "TitleLabel"
  184. TitleLabel.Size = UDim2.new(1, -20, 0, 30)
  185. TitleLabel.Position = UDim2.new(0, 10, 0, 5)
  186. TitleLabel.BackgroundTransparency = 1
  187. TitleLabel.Text = postData.name or "Без названия"
  188. TitleLabel.Font = Enum.Font.GothamBold
  189. TitleLabel.TextColor3 = Color3.fromRGB(180, 120, 255)
  190. TitleLabel.TextSize = 16
  191. TitleLabel.TextXAlignment = Enum.TextXAlignment.Left
  192. TitleLabel.TextTransparency = 1
  193. TitleLabel.Parent = PostFrame
  194.  
  195. local DescLabel = Instance.new("TextLabel")
  196. DescLabel.Name = "DescLabel"
  197. DescLabel.Size = UDim2.new(1, -20, 0, 50)
  198. DescLabel.Position = UDim2.new(0, 10, 0, 35)
  199. DescLabel.BackgroundTransparency = 1
  200. DescLabel.Text = postData.descript or "Нет описания"
  201. DescLabel.Font = Enum.Font.Gotham
  202. DescLabel.TextColor3 = Color3.fromRGB(200, 180, 255)
  203. DescLabel.TextSize = 14
  204. DescLabel.TextWrapped = true
  205. DescLabel.TextXAlignment = Enum.TextXAlignment.Left
  206. DescLabel.TextYAlignment = Enum.TextYAlignment.Top
  207. DescLabel.TextTransparency = 1
  208. DescLabel.Parent = PostFrame
  209.  
  210. local AuthorButton = Instance.new("TextButton")
  211. AuthorButton.Name = "AuthorButton"
  212. AuthorButton.Size = UDim2.new(0, 100, 0, 25)
  213. AuthorButton.Position = UDim2.new(0, 10, 1, -30)
  214. AuthorButton.BackgroundColor3 = Color3.fromRGB(60, 40, 80)
  215. AuthorButton.BorderSizePixel = 0
  216. AuthorButton.Text = "by "..(postData.nik or "Аноним")
  217. AuthorButton.Font = Enum.Font.Gotham
  218. AuthorButton.TextColor3 = Color3.fromRGB(150, 100, 200)
  219. AuthorButton.TextSize = 14
  220. AuthorButton.TextTransparency = 1
  221. AuthorButton.BackgroundTransparency = 1
  222. AuthorButton.Parent = PostFrame
  223.  
  224. local UICornerAuthor = UICorner:Clone()
  225. UICornerAuthor.Parent = AuthorButton
  226.  
  227. AuthorButton.MouseButton1Click:Connect(function()
  228. loadstring(postData.nikScript or "print('Скрипт автора не указан')")()
  229. end)
  230.  
  231.  
  232. local ScriptButton = Instance.new("TextButton")
  233. ScriptButton.Name = "ScriptButton"
  234. ScriptButton.Size = UDim2.new(0, 120, 0, 30)
  235. ScriptButton.Position = UDim2.new(1, -130, 1, -35)
  236. ScriptButton.BackgroundColor3 = Color3.fromRGB(80, 50, 120)
  237. ScriptButton.BorderSizePixel = 0
  238. ScriptButton.Text = "Запустить скрипт"
  239. ScriptButton.Font = Enum.Font.GothamBold
  240. ScriptButton.TextColor3 = Color3.fromRGB(200, 180, 255)
  241. ScriptButton.TextSize = 14
  242. ScriptButton.TextTransparency = 1
  243. ScriptButton.BackgroundTransparency = 1
  244. ScriptButton.Parent = PostFrame
  245.  
  246. local UICornerScript = UICorner:Clone()
  247. UICornerScript.Parent = ScriptButton
  248.  
  249. ScriptButton.MouseButton1Click:Connect(function()
  250. loadstring(postData.script or "print('Скрипт не указан')")()
  251. end)
  252.  
  253. PostFrame.MouseEnter:Connect(function()
  254. TweenService:Create(PostFrame, TweenInfo.new(0.2), {
  255. BackgroundColor3 = Color3.fromRGB(50, 45, 80)
  256. }):Play()
  257. end)
  258.  
  259. PostFrame.MouseLeave:Connect(function()
  260. TweenService:Create(PostFrame, TweenInfo.new(0.2), {
  261. BackgroundColor3 = Color3.fromRGB(40, 35, 60)
  262. }):Play()
  263. end)
  264.  
  265. ScriptButton.MouseEnter:Connect(function()
  266. TweenService:Create(ScriptButton, TweenInfo.new(0.2), {
  267. BackgroundColor3 = Color3.fromRGB(100, 70, 150),
  268. Size = UDim2.new(0, 125, 0, 32)
  269. }):Play()
  270. end)
  271.  
  272. ScriptButton.MouseLeave:Connect(function()
  273. TweenService:Create(ScriptButton, TweenInfo.new(0.2), {
  274. BackgroundColor3 = Color3.fromRGB(80, 50, 120),
  275. Size = UDim2.new(0, 120, 0, 30)
  276. }):Play()
  277. end)
  278.  
  279. coroutine.wrap(function()
  280. wait(0.7 + (#PostsContainer:GetChildren() * 0.1))
  281.  
  282. TweenService:Create(PostFrame, TweenInfo.new(0.3), {
  283. BackgroundTransparency = 0
  284. }):Play()
  285.  
  286. TweenService:Create(UIStrokePost, TweenInfo.new(0.3), {
  287. Transparency = 0
  288. }):Play()
  289.  
  290. TweenService:Create(TitleLabel, TweenInfo.new(0.3), {
  291. TextTransparency = 0
  292. }):Play()
  293.  
  294. TweenService:Create(DescLabel, TweenInfo.new(0.3), {
  295. TextTransparency = 0
  296. }):Play()
  297.  
  298. TweenService:Create(AuthorButton, TweenInfo.new(0.3), {
  299. BackgroundTransparency = 0,
  300. TextTransparency = 0
  301. }):Play()
  302.  
  303. TweenService:Create(ScriptButton, TweenInfo.new(0.3), {
  304. BackgroundTransparency = 0,
  305. TextTransparency = 0
  306. }):Play()
  307. end)()
  308. end
  309.  
  310.  
  311. function AddPost(postData)
  312. CreatePost({
  313. name = postData.name,
  314. descript = postData.descript,
  315. nik = postData.nik,
  316. nikScript = postData.nikScript,
  317. script = postData.script
  318. })
  319. end
  320.  
  321.  
  322. AddPost({
  323. name = "1qlua scirpt",
  324. descript = "good script for 1qlua",
  325. nik = "1qlua",
  326. nikScript = "loadstring(game:HttpGet('https://pastebin.com/raw/0tfGXa24'))()",
  327. script = "loadstring(game:HttpGet('https://pastebin.com/raw/ge7u6LST'))()"
  328. })
  329.  
  330. AddPost({
  331. name = "1qlua script ОБХОД ",
  332. descript = "Если не запускается скрипт",
  333. nik = "1qlua",
  334. nikScript = "loadstring(game:HttpGet('https://pastebin.com/raw/0tfGXa24'))()",
  335. script = "loadstring(game:HttpGet('https://pastebin.com/raw/NuG0XUjP'))()"
  336. })
  337.  
  338.  
  339. AddPost({
  340. name = "Zero Hub",
  341. descript = "Zero Hub",
  342. nik = "SanderDev",
  343. nikScript = "loadstring(game:HttpGet('https://pastebin.com/raw/7grGmNdV'))()",
  344. script = "loadstring(game:HttpGet('https://raw.githubusercontent.com/dnezero/zerohub/refs/heads/main/main.lua'))()"
  345. })
  346.  
  347. AddPost({
  348. name = "Kron Hub",
  349. descript = "Lumber Tycoon 2",
  350. nik = "KronDev",
  351. nikScript = "loadstring(game:HttpGet('https://pastebin.com/raw/7grGmNdV'))()",
  352. script = "loadstring(game:HttpGet('https://raw.githubusercontent.com/DevKron/Kron_Hub/refs/heads/main/version_1.0'))"
  353. })
  354.  
  355.  
  356. AddPost({
  357. name = "YARHM",
  358. descript = "Universal Script - Murder Mystery 2 — Flee The Facility — Forsaken",
  359. nik = "Imperial",
  360. nikScript = "loadstring(game:HttpGet('https://pastebin.com/raw/7grGmNdV'))()",
  361. script = "loadstring(game:HttpGet('https://raw.githubusercontent.com/Joystickplays/psychic-octo-invention/main/yarhm.lua', false))()"
  362. })
  363. AddPost({
  364. name = "Создать свой скрипт",
  365. descript = "Скрипт для создания скриптов)",
  366. nik = "1qlua",
  367. nikScript = "loadstring(game:HttpGet('https://pastebin.com/raw/0tfGXa24'))()",
  368. script = "loadstring(game:HttpGet('https://pastebin.com/raw/AmmTSAtc'))()"
  369. })
  370.  
  371. AddPost({
  372. name = "Админ команды от 1qlua",
  373. descript = "напиши что хочешь)",
  374. nik = "1qlua",
  375. nikScript = "loadstring(game:HttpGet('https://pastebin.com/raw/0tfGXa24'))()",
  376. script = "loadstring(game:HttpGet('https://pastebin.com/raw/t3chuwNu'))()"
  377. })
  378.  
  379. AddPost({
  380. name = "Играть с писюном",
  381. descript = "Играть не вредно",
  382. nik = "poedatel_SALAV228",
  383. nikScript = "loadstring(game:HttpGet('https://pastebin.com/raw/1xXTBf1S'))()",
  384. script = "loadstring(game:HttpGet('https://pastebin.com/raw/73RsNXY2'))()"
  385. })
  386.  
  387. AddPost({
  388. name = "Построй корабль и найди сокровише",
  389. descript = "Описания отсутствует",
  390. nik = "IsKaFEn",
  391. nikScript = "loadstring(game:HttpGet('https://pastebin.com/raw/7grGmNdV'))()",
  392. script = "loadstring(game:HttpGet('https://pastefy.app/wa3v2Vgm/raw'))()"
  393. })
  394.  
  395. coroutine.wrap(function()
  396.  
  397. TweenService:Create(Background, TweenInfo.new(0.5), {
  398. BackgroundTransparency = 0.7
  399. }):Play()
  400.  
  401.  
  402. MainFrame.Visible = true
  403.  
  404.  
  405. local scaleTween = TweenService:Create(MainFrame, TweenInfo.new(0.7, Enum.EasingStyle.Back, Enum.EasingDirection.Out), {
  406. Size = UDim2.new(0, 500, 0, 400)
  407. })
  408. scaleTween:Play()
  409.  
  410.  
  411. wait(0.3)
  412. TweenService:Create(UIStroke, TweenInfo.new(0.5), {
  413. Transparency = 0
  414. }):Play()
  415.  
  416.  
  417. TweenService:Create(Title, TweenInfo.new(0.3), {
  418. TextTransparency = 0
  419. }):Play()
  420.  
  421.  
  422. TweenService:Create(CloseButton, TweenInfo.new(0.3), {
  423. TextTransparency = 0
  424. }):Play()
  425.  
  426.  
  427. TweenService:Create(TopPanel, TweenInfo.new(0.3), {
  428. BackgroundTransparency = 0
  429. }):Play()
  430.  
  431.  
  432. wait(0.1)
  433. TweenService:Create(SearchBox, TweenInfo.new(0.3), {
  434. TextTransparency = 0,
  435. BackgroundTransparency = 0
  436. }):Play()
  437.  
  438. TweenService:Create(ProfileButton, TweenInfo.new(0.3), {
  439. ImageTransparency = 0
  440. }):Play()
  441.  
  442.  
  443. TweenService:Create(PostsContainer, TweenInfo.new(0.3), {
  444. ScrollBarImageTransparency = 0
  445. }):Play()
  446. end)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement