sagat1719

random script hub

Apr 8th, 2024 (edited)
640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 107.97 KB | None | 0 0
  1. -- Random script hub made by @Topuzzzz on youtube, dont forget to subscribe to me :D
  2. -- Big Credits to 123XxXMegaProXxX123!
  3. wait(2)
  4. -- Goto line 786 and start building your own GUI!
  5. -- Properties:
  6. title = "The Twizzy Hub"
  7. successmessage = "Success!"
  8. currentversion = 2.4
  9. startmenu = "Settings"--[[Put here any section you want to start in]]
  10. local THO = Instance.new("ScreenGui")
  11. local theme = Instance.new("Color3Value")
  12. theme.Name = "Theme"
  13. theme.Value = Color3.new(1, 1, 1) -- you can change there default theme color if you want
  14. theme.Parent = THO
  15. localplr = game.Players.LocalPlayer
  16.  
  17.  
  18. local topFactor = 0.8
  19. local darkerFactor = 0.85
  20. local darkFactor = 0.9
  21. local normalFactor = 0.95
  22. local minimizeFactor = 0.88
  23. local top, darker, dark, normal, minimize
  24. local function CalculateThemeColors()
  25.     top = Color3.new(
  26.         theme.Value.r * topFactor,
  27.         theme.Value.g * topFactor,
  28.         theme.Value.b * topFactor
  29.     )
  30.     darker = Color3.new(
  31.         theme.Value.r * darkerFactor,
  32.         theme.Value.g * darkerFactor,
  33.         theme.Value.b * darkerFactor
  34.     )
  35.     dark = Color3.new(
  36.         theme.Value.r * darkFactor,
  37.         theme.Value.g * darkFactor,
  38.         theme.Value.b * darkFactor
  39.     )
  40.     normal = Color3.new(
  41.         theme.Value.r * normalFactor,
  42.         theme.Value.g * normalFactor,
  43.         theme.Value.b * normalFactor
  44.     )
  45.     minimize = Color3.new(
  46.         theme.Value.r * minimizeFactor,
  47.         theme.Value.g * minimizeFactor,
  48.         theme.Value.b * minimizeFactor
  49.     )
  50. end
  51. local function ChangeColor()
  52.     CalculateThemeColors()
  53.     Minimize.BackgroundColor3 = theme.Value
  54.     Sectionsbaa.BackgroundColor3 = dark
  55.     Sectionsba.BackgroundColor3 = dark
  56.     Sectionsbaaa.BackgroundColor3 = dark
  57.     TextButton_7.BackgroundColor3 = minimize
  58.     X.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  59.     TextLabel.BackgroundColor3 = theme.Value
  60.     TemplateSection.BackgroundColor3 = theme.Value
  61.     Sections.BackgroundColor3 = dark
  62.     Top_2.BackgroundColor3 = top
  63.     MainBa.BackgroundColor3 = dark
  64.     TextButton_2.BackgroundColor3 = darker
  65.     TextButton.BackgroundColor3 = darker
  66.     drop.BackgroundColor3 = darker
  67.     L_5.BackgroundColor3 = darker
  68.     L_6.BackgroundColor3 = normal
  69.     L_7.BackgroundColor3 = theme.Value
  70.     L_1.BackgroundColor3 = dark
  71.     L_2.BackgroundColor3 = theme.Value
  72.     L_3.BackgroundColor3 = normal
  73.     L_4.BackgroundColor3 = theme.Value
  74.     Button_2.BackgroundColor3 = normal
  75.     Button.BackgroundColor3 = theme.Value
  76.     Toggle_2.BackgroundColor3 = normal
  77.     Toggle.BackgroundColor3 = theme.Value
  78.     Template.BackgroundColor3 = theme.Value
  79.     Main.BackgroundColor3 = darker
  80.     local bool
  81.     if theme.Value.r <= 0.4 and theme.Value.g <= 0.4 and theme.Value.b <= 0.4 then
  82.         bool = true
  83.         for _, menu in ipairs(Main:GetChildren()) do
  84.             if menu:IsA("ScrollingFrame") then
  85.                 menu.ScrollBarImageColor3 = Color3.new(1,1,1)
  86.             end
  87.         end
  88.         Sections.ScrollBarImageColor3 = Color3.new(1,1,1)
  89.         TextLabel.TextColor3 = Color3.new(1,1,1)
  90.     else
  91.         bool = false
  92.         for _, menu in ipairs(Main:GetChildren()) do
  93.             if menu:IsA("ScrollingFrame") then
  94.                 menu.ScrollBarImageColor3 = Color3.new(0,0,0)
  95.             end
  96.         end
  97.         Sections.ScrollBarImageColor3 = Color3.new(0,0,0)
  98.         TextLabel.TextColor3 = Color3.new(0,0,0)
  99.     end
  100.     for _, child in ipairs(Sections:GetChildren()) do
  101.         if child:IsA("TextButton") then
  102.             if bool == true then
  103.                 child.TextColor3 = Color3.new(1,1,1)
  104.             else
  105.                 child.TextColor3 = Color3.new(0,0,0)
  106.             end
  107.             child.BackgroundColor3 = theme.Value
  108.         end
  109.     end
  110.     for _, child in ipairs(Main:GetChildren()) do
  111.         if child:IsA("ScrollingFrame") then
  112.             for _, chil in ipairs(child:GetChildren()) do
  113.                 if chil:IsA("Frame") then
  114.                     local buttonChild
  115.                     buttonChild = chil:FindFirstChild(chil.Name)
  116.  
  117.  
  118.                     if chil:FindFirstChildWhichIsA("TextBox") then
  119.                         buttonChild = chil:FindFirstChildWhichIsA("TextBox")
  120.                     end
  121.  
  122.                     if buttonChild then
  123.                         if bool == true then
  124.                             buttonChild.TextColor3 = Color3.new(1,1,1)
  125.                             if chil:FindFirstChildWhichIsA("TextBox") then
  126.                                 chil:FindFirstChildWhichIsA("TextBox").PlaceholderColor3 = Color3.new(1,1,1)
  127.                             end
  128.                         else
  129.                             buttonChild.TextColor3 = Color3.new(0,0,0)
  130.                             if chil:FindFirstChildWhichIsA("TextBox") then
  131.                                 chil:FindFirstChildWhichIsA("TextBox").PlaceholderColor3 = Color3.fromRGB(178,178,178)
  132.                             end
  133.                         end
  134.                         buttonChild.BackgroundColor3 = normal
  135.                     end
  136.                 end
  137.             end
  138.         end
  139.     end
  140.  
  141. end
  142. Notifications = Instance.new("Frame")
  143. UIListLayout = Instance.new("UIListLayout")
  144. Notify = Instance.new("TextLabel")
  145. Top = Instance.new("Frame")
  146. Main = Instance.new("Frame")
  147. UICorner = Instance.new("UICorner")
  148. Template = Instance.new("ScrollingFrame")
  149. UIListLayout_2 = Instance.new("UIListLayout")
  150. Toggle = Instance.new("Frame")
  151. Toggle_2 = Instance.new("TextLabel")
  152. Toggle_3 = Instance.new("TextButton")
  153. UICorner_2 = Instance.new("UICorner")
  154. Icon = Instance.new("ImageLabel")
  155. UICorner_12 = Instance.new("UICorner")
  156. Button = Instance.new("Frame")
  157. Button_2 = Instance.new("TextButton")
  158. UICorner_3 = Instance.new("UICorner")
  159. L_4 = Instance.new("Frame")
  160. L_3 = Instance.new("TextBox")
  161. L_2 = Instance.new("Frame")
  162. L_1 = Instance.new("TextLabel")
  163. L_7 = Instance.new("Frame")
  164. L_6 = Instance.new("TextLabel")
  165. L_5 = Instance.new("TextButton")
  166. UICorner_4 = Instance.new("UICorner")
  167. drop = Instance.new("ScrollingFrame")
  168. UICorner_5 = Instance.new("UICorner")
  169. TextButton = Instance.new("TextButton")
  170. UIListLayout_3 = Instance.new("UIListLayout")
  171. TextButton_2 = Instance.new("TextButton")
  172. UICorner_6 = Instance.new("UICorner")
  173. MainBa = Instance.new("Frame")
  174. Top_2 = Instance.new("Frame")
  175. Sections = Instance.new("ScrollingFrame")
  176. UICorner_7 = Instance.new("UICorner")
  177. TemplateSection = Instance.new("TextButton")
  178. UICorner_8 = Instance.new("UICorner")
  179. UICorner_9 = Instance.new("UICorner")
  180. UICorner_10 = Instance.new("UICorner")
  181. UICorner_11 = Instance.new("UICorner")
  182. UIListLayout_4 = Instance.new("UIListLayout")
  183. UIStroke = Instance.new("UIStroke")
  184. TextLabel = Instance.new("TextLabel")
  185. X = Instance.new("TextButton")
  186. TextButton_7 = Instance.new("TextButton")
  187. Sectionsba = Instance.new("Frame")
  188. Sectionsbaa = Instance.new("Frame")
  189. Sectionsbaaa = Instance.new("Frame")
  190. Minimize = Instance.new("TextButton")
  191. Toggl = Instance.new("BoolValue")
  192. ChangeColor()
  193. theme.Changed:Connect(function()
  194.     ChangeColor()
  195. end)
  196.  
  197. local function hasFunction(funcName)
  198.     return pcall(function() return game[funcName] ~= nil end)
  199. end
  200. THO.Name = "THO"
  201. THO.Parent = localplr.PlayerGui
  202. THO.Enabled = false
  203. THO.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  204. THO.DisplayOrder = 999999999
  205. THO.ResetOnSpawn = false
  206.  
  207. Notifications.Name = "Notifications"
  208. Notifications.Parent = THO
  209. Notifications.BackgroundTransparency = 1.000
  210. Notifications.Size = UDim2.new(0, 300, 1, 0)
  211.  
  212. UIListLayout.Parent = Notifications
  213. UIListLayout.VerticalAlignment = Enum.VerticalAlignment.Bottom
  214.  
  215. Notify.Name = "Notify"
  216. Notify.Parent = Notifications
  217. Notify.BackgroundColor3 = theme.Value
  218. Notify.BackgroundTransparency = 0.500
  219. Notify.BorderSizePixel = 0
  220. Notify.Size = UDim2.new(1, 0, 0.1, 0)
  221. Notify.Visible = false
  222. Notify.Font = Enum.Font.Bodoni
  223. Notify.TextColor3 = Color3.fromRGB(0, 0, 0)
  224. Notify.TextScaled = true
  225. Notify.TextSize = 14
  226. Notify.TextWrapped = true
  227.  
  228. Top.Name = "Top"
  229. Top.Parent = THO
  230. Top.BackgroundColor3 = top
  231. Top.BorderColor3 = Color3.fromRGB(0, 0, 0)
  232. Top.BorderSizePixel = 0
  233. Top.Position = UDim2.new(0.5, -175, 0.5, -100)
  234. Top.Size = UDim2.new(0, 350, 0, 20)
  235. Top.ZIndex = 3
  236.  
  237. Icon.Name = "Icon"
  238. Icon.Parent = Top
  239. Icon.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  240. Icon.BorderColor3 = Color3.fromRGB(0, 0, 0)
  241. Icon.BackgroundTransparency = 1
  242. Icon.BorderSizePixel = 0
  243. Icon.Position = UDim2.new(0, 4, 0, 2)
  244. Icon.Size = UDim2.new(0, 16, 0, 16)
  245. Icon.ZIndex = 4
  246. Icon.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
  247. local content, isReady = game.Players:GetUserThumbnailAsync(localplr.UserId, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size420x420)
  248. Icon.Image = content
  249. UICorner_12.Parent = Icon
  250. UIStroke.Parent = Icon
  251. UIStroke.Transparency = 0.5
  252. UIStroke.Thickness = 0.5
  253.  
  254. Main.Name = "Main"
  255. Main.Parent = Top
  256. Main.BackgroundColor3 = darker
  257. Main.BorderSizePixel = 0
  258. Main.Position = UDim2.new(0, 100, 0, 0)
  259. Main.Size = UDim2.new(0, 250, 0, 200)
  260.  
  261. UICorner.CornerRadius = UDim.new(0, 10)
  262. UICorner.Parent = Main
  263.  
  264. Template.CanvasSize = UDim2.new(0,50,0,5+(#Template:GetChildren()*25))
  265. Template.AutomaticCanvasSize = Enum.AutomaticSize.Y
  266. Template.Name = "Template"
  267. Template.Parent = Main
  268. Template.BackgroundColor3 = theme.Value
  269. Template.BackgroundTransparency = 1.000
  270. Template.BorderSizePixel = 0
  271. Template.ScrollBarThickness = 3
  272. Template.ScrollBarImageColor3 = Color3.new(0,0,0)
  273. Template.Visible = false
  274. Template.Position = UDim2.new(0, 0, 0.1, 0)
  275. Template.Size = UDim2.new(1, 0, 0.9, 0)
  276. Template.ClipsDescendants = true
  277.  
  278. UIListLayout_2.Parent = Template
  279. UIListLayout_2.SortOrder = Enum.SortOrder.LayoutOrder
  280.  
  281. Toggle.Name = "Toggle"
  282. Toggle.Parent = Template
  283. Toggle.BackgroundColor3 = theme.Value
  284. Toggle.BackgroundTransparency = 1.000
  285. Toggle.BorderSizePixel = 0
  286. Toggle.Rotation = 70
  287. Toggle.Size = UDim2.new(1, 0, 0, 25)
  288.  
  289. Toggle_2.Name = "Toggle"
  290. Toggle_2.Parent = Toggle
  291. Toggle_2.BackgroundColor3 = normal
  292. Toggle_2.BorderSizePixel = 0
  293. Toggle_2.Position = UDim2.new(0, 3, 0, 5)
  294. Toggle_2.Size = UDim2.new(1, -3, 0, 20)
  295. Toggle_2.Font = Enum.Font.Bodoni
  296. Toggle_2.Text = " Toggle"
  297. Toggle_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  298. Toggle_2.TextSize = 14
  299. Toggle_2.TextXAlignment = Enum.TextXAlignment.Left
  300.  
  301. UICorner_9.CornerRadius = UDim.new(0, 3)
  302. UICorner_9.Parent = Toggle_2
  303.  
  304. Toggle_3.Name = "Toggle"
  305. Toggle_3.Parent = Toggle_2
  306. Toggle_3.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  307. Toggle_3.BorderSizePixel = 0
  308. Toggle_3.Position = UDim2.new(1, -20, 0, 0)
  309. Toggle_3.Size = UDim2.new(0, 20, 0, 20)
  310. Toggle_3.Font = Enum.Font.Bodoni
  311. Toggle_3.Text = ""
  312. Toggle_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  313. Toggle_3.TextSize = 14
  314.  
  315. Toggl.Name = "Toggle"
  316. Toggl.Parent = Toggle_3
  317. Toggl.Value = false
  318.  
  319. UICorner_2.CornerRadius = UDim.new(0, 3)
  320. UICorner_2.Parent = Toggle_3
  321.  
  322. Button.Name = "Button"
  323. Button.Parent = Template
  324. Button.BackgroundColor3 = theme.Value
  325. Button.BackgroundTransparency = 1.000
  326. Button.BorderSizePixel = 0
  327. Button.Size = UDim2.new(1, 0, 0, 25)
  328.  
  329. Button_2.Name = "Button"
  330. Button_2.Parent = Button
  331. Button_2.BackgroundColor3 = normal
  332. Button_2.BorderSizePixel = 0
  333. Button_2.Position = UDim2.new(0, 3, 0, 5)
  334. Button_2.Size = UDim2.new(1, -3, 0, 20)
  335. Button_2.Font = Enum.Font.Bodoni
  336. Button_2.Text = " Button"
  337. Button_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  338. Button_2.TextSize = 14
  339. Button_2.TextXAlignment = Enum.TextXAlignment.Left
  340.  
  341. UICorner_3.CornerRadius = UDim.new(0, 3)
  342. UICorner_3.Parent = Button_2
  343.  
  344. L_4.Name = "TextBox"
  345. L_4.Parent = Template
  346. L_4.BackgroundColor3 = theme.Value
  347. L_4.BackgroundTransparency = 1.000
  348. L_4.BorderSizePixel = 0
  349. L_4.Size = UDim2.new(1, 0, 0, 25)
  350.  
  351.  
  352. L_3.Parent = L_4
  353. L_3.BackgroundColor3 = normal
  354. L_3.BorderSizePixel = 0
  355. L_3.Position = UDim2.new(0, 3, 0, 5)
  356. L_3.Size = UDim2.new(1, -3, 0, 20)
  357. L_3.Font = Enum.Font.Bodoni
  358. L_3.PlaceholderText = "TextBox"
  359. L_3.Text = ""
  360. L_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  361. L_3.TextSize = 14
  362. L_3.TextWrapped = true
  363.  
  364. UICorner_10.CornerRadius = UDim.new(0, 3)
  365. UICorner_10.Parent = L_3
  366.  
  367. L_2.Name = "Info"
  368. L_2.Parent = Template
  369. L_2.BackgroundColor3 = theme.Value
  370. L_2.BackgroundTransparency = 1.000
  371. L_2.BorderSizePixel = 0
  372. L_2.Size = UDim2.new(1, 0, 0, 25)
  373.  
  374. L_1.Name = "Info"
  375. L_1.Parent = L_2
  376. L_1.BackgroundColor3 = dark
  377. L_1.BorderSizePixel = 0
  378. L_1.Position = UDim2.new(0, 3, 0, 5)
  379. L_1.Size = UDim2.new(1, -3, 0, 20)
  380. L_1.Font = Enum.Font.Bodoni
  381. L_1.Text = "Info"
  382. L_1.TextColor3 = Color3.fromRGB(0, 0, 0)
  383. L_1.TextSize = 14
  384.  
  385. UICorner_11.CornerRadius = UDim.new(0, 3)
  386. UICorner_11.Parent = L_1
  387.  
  388. L_7.Name = "Dropdown"
  389. L_7.Parent = Template
  390. L_7.BackgroundColor3 = theme.Value
  391. L_7.BackgroundTransparency = 1.000
  392. L_7.BorderSizePixel = 0
  393. L_7.ZIndex = 5
  394. L_7.Size = UDim2.new(1, 0, 0, 25)
  395.  
  396. L_6.Name = "Dropdown"
  397. L_6.Parent = L_7
  398. L_6.BackgroundColor3 = normal
  399. L_6.BorderSizePixel = 0
  400. L_6.Position = UDim2.new(0, 3, 0, 5)
  401. L_6.Size = UDim2.new(1, -3, 0, 20)
  402. L_6.Font = Enum.Font.Bodoni
  403. L_6.Text = " Dropdown"
  404. L_6.TextColor3 = Color3.fromRGB(0, 0, 0)
  405. L_6.TextSize = 14
  406. L_6.TextXAlignment = Enum.TextXAlignment.Left
  407.  
  408. L_5.Name = "Dropdown"
  409. L_5.Parent = L_6
  410. L_5.BackgroundColor3 = darker
  411. L_5.BorderSizePixel = 0
  412. L_5.Position = UDim2.new(1, -20, 0, 0)
  413. L_5.Size = UDim2.new(0, 20, 0, 20)
  414. L_5.Font = Enum.Font.Bodoni
  415. L_5.Text = "V"
  416. L_5.TextColor3 = Color3.fromRGB(0, 0, 0)
  417. L_5.TextSize = 14
  418.  
  419. UICorner_4.CornerRadius = UDim.new(0, 3)
  420. UICorner_4.Parent = L_5
  421.  
  422. drop.Name = "drop"
  423. drop.Parent = L_5
  424. drop.Active = true
  425. drop.BackgroundColor3 = darker
  426. drop.BorderSizePixel = 0
  427. drop.Position = UDim2.new(0, -225, 0, 20)
  428. drop.Size = UDim2.new(0, 240, 0, 80)
  429. drop.Visible = false
  430. drop.ZIndex = 9
  431. drop.CanvasPosition = Vector2.new(0, 40)
  432. drop.CanvasSize = UDim2.new(0, 0, 0, 120)
  433.  
  434. UICorner_5.CornerRadius = UDim.new(0, 3)
  435. UICorner_5.Parent = drop
  436.  
  437. TextButton.Parent = drop
  438. TextButton.Name = "TextButton"
  439. TextButton.BackgroundColor3 = darker
  440. TextButton.BorderSizePixel = 0
  441. TextButton.Size = UDim2.new(1, 0, 0, 20)
  442. TextButton.Font = Enum.Font.Bodoni
  443. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  444. TextButton.TextSize = 14
  445.  
  446. UIListLayout_3.Parent = drop
  447. UIListLayout_3.SortOrder = Enum.SortOrder.Name
  448.  
  449. UICorner_6.CornerRadius = UDim.new(0, 3)
  450. UICorner_6.Parent = L_6
  451.  
  452. MainBa.Name = "MainBa"
  453. MainBa.Parent = Top
  454. MainBa.BackgroundColor3 = darker
  455. MainBa.BorderSizePixel = 0
  456. MainBa.Position = UDim2.new(0, 100, 0, 182)
  457. MainBa.Size = UDim2.new(0, 11, 0, 18)
  458. MainBa.ZIndex = 0
  459.  
  460. Top_2.Name = "Top"
  461. Top_2.Parent = Top
  462. Top_2.BackgroundColor3 = top
  463. Top_2.BorderSizePixel = 0
  464. Top_2.Size = UDim2.new(0, 350, 0, 20)
  465. Top_2.ZIndex = 3
  466.  
  467. Sections.Name = "Sections"
  468. Sections.Parent = Top
  469. Sections.ZIndex = 2
  470. Sections.BackgroundColor3 = dark
  471. Sections.BackgroundTransparency = 1
  472. Sections.AutomaticCanvasSize = Enum.AutomaticSize.Y
  473. Sections.ScrollBarImageColor3 = Color3.new(0,0,0)
  474. Sections.ScrollBarThickness = 3
  475. Sections.BorderSizePixel = 0
  476. Sections.Position = UDim2.new(0, 0, 0, 25)
  477. Sections.Size = UDim2.new(0, 100, 0, 175)
  478.  
  479. UICorner_7.CornerRadius = UDim.new(0, 10)
  480. UICorner_7.Parent = Sectionsbaaa
  481.  
  482. TemplateSection.Name = "TemplateSection"
  483. TemplateSection.Parent = Sections
  484. TemplateSection.BackgroundColor3 = theme.Value
  485. TemplateSection.BorderSizePixel = 0
  486. TemplateSection.Position = UDim2.new(0, 10, 0, 5)
  487. TemplateSection.Size = UDim2.new(0, 80, 0, 20)
  488. TemplateSection.Font = Enum.Font.Bodoni
  489. TemplateSection.Text = "Test"
  490. TemplateSection.TextColor3 = Color3.fromRGB(0, 0, 0)
  491. TemplateSection.TextScaled = true
  492. TemplateSection.Visible = false
  493. TemplateSection.TextSize = 14
  494.  
  495. UICorner_8.CornerRadius = UDim.new(0, 3)
  496. UICorner_8.Parent = TemplateSection
  497.  
  498. UIListLayout_4.Parent = Sections
  499. UIListLayout_4.HorizontalAlignment = Enum.HorizontalAlignment.Center
  500. UIListLayout_4.SortOrder = Enum.SortOrder.LayoutOrder
  501. UIListLayout_4.Padding = UDim.new(0, 5)
  502.  
  503. TextLabel.Parent = Top
  504. TextLabel.BackgroundColor3 = theme.Value
  505. TextLabel.BackgroundTransparency = 1.000
  506. TextLabel.BorderSizePixel = 0
  507. TextLabel.Size = UDim2.new(1, -25, 1, 0)
  508. TextLabel.Position = UDim2.new(0,25,0,0)
  509. TextLabel.ZIndex = 4
  510. TextLabel.Font = Enum.Font.Bodoni
  511. TextLabel.Text = title.." v"..currentversion
  512. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  513. TextLabel.TextSize = 14
  514. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  515.  
  516. X.Name = "X"
  517. X.Parent = Top
  518. X.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  519. X.BorderSizePixel = 0
  520. X.Position = UDim2.new(0, 330, 0, 0)
  521. X.Size = UDim2.new(0, 20, 0, 20)
  522. X.ZIndex = 4
  523. X.Font = Enum.Font.SourceSans
  524. X.Text = "X"
  525. X.TextColor3 = Color3.fromRGB(0, 0, 0)
  526. X.TextSize = 14
  527.  
  528. TextButton_7.Name = "M"
  529. TextButton_7.Parent = Top
  530. TextButton_7.BackgroundColor3 = minimize
  531. TextButton_7.BorderSizePixel = 0
  532. TextButton_7.Position = UDim2.new(0, 310, 0, 0)
  533. TextButton_7.Size = UDim2.new(0, 20, 0, 20)
  534. TextButton_7.ZIndex = 4
  535. TextButton_7.Font = Enum.Font.SourceSans
  536. TextButton_7.Text = "M"
  537. TextButton_7.TextColor3 = Color3.fromRGB(0, 0, 0)
  538. TextButton_7.TextSize = 14
  539.  
  540. Sectionsba.Name = "Sectionsba"
  541. Sectionsba.Parent = Top
  542. Sectionsba.BackgroundColor3 = dark
  543. Sectionsba.BorderSizePixel = 0
  544. Sectionsba.Position = UDim2.new(0, 90, 0, 20)
  545. Sectionsba.Size = UDim2.new(0, 12, 0, 180)
  546. Sectionsba.ZIndex = 1
  547.  
  548. Sectionsbaa.Name = "Sectionsbaa"
  549. Sectionsbaa.Parent = Top
  550. Sectionsbaa.BackgroundColor3 = dark
  551. Sectionsbaa.BorderSizePixel = 0
  552. Sectionsbaa.Position = UDim2.new(0, 0, 1, 0)
  553. Sectionsbaa.Size = UDim2.new(0, 100, 0, 15)
  554. Sectionsbaa.ZIndex = 1
  555.  
  556. Sectionsbaaa.Name = "Sectionsbaaa"
  557. Sectionsbaaa.Parent = Top
  558. Sectionsbaaa.BackgroundColor3 = dark
  559. Sectionsbaaa.BorderSizePixel = 0
  560. Sectionsbaaa.Position = UDim2.new(0, 0, 0, 25)
  561. Sectionsbaaa.Size = UDim2.new(0, 100, 0, 175)
  562. Sectionsbaaa.ZIndex = 1
  563.  
  564. Minimize.Name = "Minimize"
  565. Minimize.Parent = THO
  566. Minimize.BackgroundColor3 = theme.Value
  567. Minimize.BackgroundTransparency = 0.500
  568. Minimize.BorderSizePixel = 0
  569. Minimize.Position = UDim2.new(0.6, 0, 0.2, 0)
  570. Minimize.Size = UDim2.new(0, 50, 0, 50)
  571. Minimize.Visible = false
  572. Minimize.AutoButtonColor = false
  573. Minimize.Font = Enum.Font.Arial
  574. Minimize.Text = "+"
  575. Minimize.TextColor3 = Color3.fromRGB(0, 0, 0)
  576. Minimize.TextScaled = true
  577. Minimize.TextSize = 14
  578. Minimize.MouseButton1Click:Connect(function()
  579.     Top.Visible = true
  580.     Minimize.Visible =false
  581. end)
  582. TextButton_7.MouseButton1Click:Connect(function()
  583.     Top.Visible = false
  584.     Minimize.Visible = true
  585. end)
  586. X.MouseButton1Click:Connect(function()
  587.     for _, child in ipairs(Main:GetChildren()) do
  588.         if child:IsA("ScrollingFrame") then
  589.             for _, chil in ipairs(child:GetChildren()) do
  590.                 if chil.Name == "Toggle" then
  591.                     chil.Toggle.Toggle.Toggle.Value = true
  592.                 end
  593.             end
  594.         end
  595.     end
  596.     THO.Enabled = false
  597.     wait(0.1)
  598.     THO:Destroy()
  599. end)
  600.  
  601. local UserInputService = game:GetService("UserInputService")
  602.  
  603. local gui = Top
  604.  
  605. local dragging
  606. local dragInput
  607. local dragStart
  608. local startPos
  609.  
  610. local function update(input)
  611.     local delta = input.Position - dragStart
  612.     gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  613. end
  614.  
  615. gui.InputBegan:Connect(function(input)
  616.     if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  617.         dragging = true
  618.         dragStart = input.Position
  619.         startPos = gui.Position
  620.  
  621.         input.Changed:Connect(function()
  622.             if input.UserInputState == Enum.UserInputState.End then
  623.                 game:GetService("GuiService").TouchControlsEnabled = true
  624.                 dragging = false
  625.             end
  626.         end)
  627.     end
  628. end)
  629.  
  630. gui.InputChanged:Connect(function(input)
  631.     if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  632.         game:GetService("GuiService").TouchControlsEnabled = false
  633.         dragInput = input
  634.     end
  635. end)
  636.  
  637. UserInputService.InputChanged:Connect(function(input)
  638.     if input == dragInput and dragging then
  639.         update(input)
  640.     end
  641. end)
  642.  
  643. local gui = Minimize
  644.  
  645. local dragging
  646. local dragInput
  647. local dragStart
  648. local startPos
  649.  
  650. local function updatew(input)
  651.     local delta = input.Position - dragStart
  652.     gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  653. end
  654.  
  655. gui.InputBegan:Connect(function(input)
  656.     if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  657.         dragging = true
  658.         dragStart = input.Position
  659.         startPos = gui.Position
  660.  
  661.         input.Changed:Connect(function()
  662.             if input.UserInputState == Enum.UserInputState.End then
  663.                 game:GetService("GuiService").TouchControlsEnabled = true
  664.                 dragging = false
  665.             end
  666.         end)
  667.     end
  668. end)
  669.  
  670. gui.InputChanged:Connect(function(input)
  671.     if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  672.         game:GetService("GuiService").TouchControlsEnabled = false
  673.         dragInput = input
  674.     end
  675. end)
  676.  
  677. UserInputService.InputChanged:Connect(function(input)
  678.     if input == dragInput and dragging then
  679.         updatew(input)
  680.     end
  681. end)
  682.  
  683. local function notify(text)
  684.     local Noti = Notify:Clone()
  685.     Noti.Visible = true
  686.     Noti.Text = text
  687.     Noti.Parent = Notifications
  688.     print("Random Hub Notification: "..text)
  689.     local function notif()
  690.         wait(5)
  691.         for i = 0,10 do
  692.             Noti.Transparency = Noti.Transparency + 0.1
  693.             wait(0.1)
  694.         end
  695.         wait(1)
  696.         Noti:Destroy()
  697.     end
  698.     local co = coroutine.create(notif)
  699.     coroutine.resume(co, text)
  700.     return Noti
  701. end
  702.  
  703. local function createbutton(text,parent, IsDeletable)
  704.     local butto = Button:Clone()
  705.     local button = butto:FindFirstChildWhichIsA("TextButton")
  706.     button.Text = " "..text
  707.     butto.Parent = parent
  708.     local bool = Instance.new("BoolValue")
  709.     bool.Parent = butto
  710.     bool.Value = IsDeletable ~= false
  711.     bool.Name = "IsDeletable"
  712.     return button
  713. end
  714. local function createinfo(text,parent)
  715.     local Inf = L_2:Clone()
  716.     local info = Inf:FindFirstChildWhichIsA("TextLabel")
  717.     info.Text = " "..text
  718.     Inf.Parent = parent
  719.     Inf.Name = "Info"
  720.     return info
  721. end
  722. local function createtoggle(text,parent)
  723.     local toggl = Toggle:Clone()
  724.     local toggle = toggl:WaitForChild("Toggle")
  725.     local tog = toggle:FindFirstChildWhichIsA("TextButton")
  726.     local bool = tog:WaitForChild("Toggle")
  727.     toggle.Text = " "..text
  728.     toggl.Parent = parent
  729.     toggl.Name = "Toggle"
  730.     bool.Value = true
  731.     tog.MouseButton1Click:Connect(function()
  732.         if tog.BackgroundColor3 == Color3.fromRGB(255,0,0) then
  733.             bool.Value = false
  734.             tog.BackgroundColor3 = Color3.fromRGB(0,255,0)
  735.         else
  736.             bool.Value = true
  737.             tog.BackgroundColor3 = Color3.fromRGB(255,0,0)
  738.         end
  739.     end)
  740.  
  741.     return tog
  742. end
  743. local function turnoff(toggle)
  744.     local val = toggle:FindFirstChild("Toggle")
  745.     if val then
  746.         val.Value = true
  747.         toggle.BackgroundColor3 = Color3.fromRGB(255,0,0)
  748.     end
  749. end
  750. local function createtextbox(text,parent)
  751.     local textbo = L_4:Clone()
  752.     local textbox = textbo:FindFirstChildWhichIsA("TextBox")
  753.     textbox.PlaceholderText = text
  754.     textbo.Parent = parent
  755.     textbo.Name = "TextBox"
  756.     return textbox
  757. end
  758. local function createdropdown(text,parent)
  759.     local dropdow = L_7:Clone()
  760.     local dropdown = dropdow:WaitForChild("Dropdown")
  761.     local button = dropdown:FindFirstChildWhichIsA("TextButton")
  762.     local menuu = button:WaitForChild("drop")
  763.     dropdown.Text = " "..text
  764.     dropdow.Parent = parent
  765.     dropdow.Name = "Dropdown"
  766.     for _, child in ipairs(menuu:GetChildren()) do
  767.         if child:IsA("TextButton") then
  768.             child:Destroy()
  769.         end
  770.     end
  771.     menuu.CanvasSize = UDim2.new(0,0,0,20*#menuu:GetChildren())
  772.     menuu.AutomaticCanvasSize = Enum.AutomaticSize.Y
  773.     button.MouseButton1Click:Connect(function()
  774.         if menuu.Visible == false then
  775.             menuu.Visible = true
  776.             dropdow.Size = UDim2.new(1, 0, 0, 105)
  777.         else
  778.             menuu.Visible = false
  779.             dropdow.Size = UDim2.new(1, 0, 0, 25)
  780.         end
  781.     end)
  782.     return button
  783. end
  784. local function createdropdownbutton(text, parent, IsDeletable)
  785.     local dropdown = drop:FindFirstChildWhichIsA("TextButton"):Clone()
  786.     dropdown.Text = " "..text
  787.     dropdown.Parent = parent:WaitForChild("drop")
  788.  
  789.     local bool = Instance.new("BoolValue")
  790.     bool.Parent = dropdown
  791.     bool.Value = IsDeletable ~= false
  792.     bool.Name = "IsDeletable"
  793.  
  794.     dropdown.MouseButton1Click:Connect(function()
  795.         dropdown.Parent.Visible = false
  796.         dropdown.Parent.Parent.Parent.Parent.Size = UDim2.new(1, 0, 0, 25)
  797.     end)
  798.  
  799.     return dropdown
  800. end
  801.  
  802. local previous = nil
  803. local function openmenu(menu)
  804.     if menu == "" then
  805.         return
  806.     end
  807.     if menu then
  808.         if previous == nil then
  809.         else
  810.             previous.Visible = false
  811.         end
  812.         local foundMenu = Main:FindFirstChild(menu.Name)
  813.         if foundMenu then
  814.             foundMenu.Visible = true
  815.         else
  816.             notify("Section not found.")
  817.         end
  818.     end
  819.     previous = menu
  820. end
  821.  
  822.  
  823. local function createsection(text)
  824.     local but = TemplateSection:Clone()
  825.     but.Visible = true
  826.     but.Parent = Sections
  827.     but.Name = text
  828.     but.Text = text
  829.     local menu = Template:Clone()
  830.     menu.Parent = Main
  831.     menu.Visible = false
  832.     menu.Name = but.Name.."menu"
  833.     for _, child in ipairs(menu:GetChildren()) do
  834.         if child:IsA("Frame") then
  835.             child:Destroy()
  836.         end
  837.     end
  838.     but.MouseButton1Click:Connect(function()
  839.         openmenu(menu)
  840.     end)
  841.     return menu
  842. end
  843. local function createhiddenmenu(text)
  844.     local menu = Template:Clone()
  845.     menu.Parent = Main
  846.     menu.Visible = false
  847.     menu.Name = text.."menu"
  848.     for _, child in ipairs(menu:GetChildren()) do
  849.         if child:IsA("Frame") then
  850.             child:Destroy()
  851.         end
  852.     end
  853.     return menu
  854. end
  855. local function clear(parent)
  856.     if parent.Name == "Dropdown" then
  857.         for _, child in ipairs(parent:FindFirstChild("drop"):GetChildren()) do
  858.             if child:FindFirstChild("IsDeletable") then
  859.                 if child:FindFirstChild("IsDeletable").Value == true then
  860.                     child:Destroy()
  861.                 end
  862.             end
  863.         end
  864.     else
  865.         if parent then
  866.             for _, child in ipairs(parent:GetChildren()) do
  867.                 if child:FindFirstChild("IsDeletable") then
  868.                     if child:FindFirstChild("IsDeletable").Value == true then
  869.                         child:Destroy()
  870.                     end
  871.                 end
  872.             end
  873.         end
  874.     end
  875. end
  876.  
  877. -- example: createbutton(IsDeletable by clear function, text inside it, set parent to)
  878. -- build your gui THERE
  879. local rs = game:GetService("RunService")
  880. local function findplr(str,except)
  881.     local list = game.Players:GetChildren()
  882.     local plrs = {}
  883.     if except == true then
  884.         for _, i in ipairs(list) do
  885.             if string.lower(string.sub(i.Name,1,string.len(str))) == string.lower(str) then
  886.             elseif string.lower(string.sub(i.DisplayName,1,string.len(str))) == string.lower(str) then
  887.             else
  888.                 table.insert(plrs,i.Name)
  889.             end
  890.         end
  891.     else
  892.         for _, i in ipairs(list) do
  893.             if string.find(string.lower(string.sub(i.Name,1,string.len(str))), string.lower(str)) then
  894.                 table.insert(plrs,i.Name)
  895.             elseif string.find(string.lower(string.sub(i.DisplayName,1,string.len(str))), string.lower(str)) then
  896.                 table.insert(plrs,i.Name)
  897.             end
  898.         end
  899.     end
  900.     return plrs
  901. end
  902. local function testforAdmin(name)
  903.     local player = game.Players:FindFirstChild(name)
  904.     if player and player.Team == game.Teams.Admin then
  905.         return true
  906.     else
  907.         return false
  908.     end
  909. end
  910. local char = localplr.Character
  911. chatbar = localplr.PlayerGui.Chat.Frame.ChatBarParentFrame.Frame.BoxFrame.Frame.ChatBar
  912. local function equipEnlighten()
  913.     local plr = localplr
  914.     local back = plr:FindFirstChild("Backpack")
  915.     local enlighten
  916.     if back then
  917.         enlighten = plr.Backpack:FindFirstChild("The Arkenstone")
  918.     else
  919.         enlighten = plr:FindFirstChild("The Arkenstone")
  920.     end
  921.     if enlighten then
  922.         enlighten.Parent = plr.Character
  923.     elseif plr.Character:FindFirstChild("The Arkenstone") then
  924.     else
  925.         if testforAdmin(localplr.Name) then
  926.         else
  927.             notify("No enlighten found")
  928.         end
  929.     end
  930. end
  931. local function unequipEnlighten()
  932.     local plr = localplr
  933.     if plr.Character:FindFirstChild("The Arkenstone") then
  934.         local back = plr:FindFirstChild("Backpack")
  935.         if back then
  936.             plr.Character:FindFirstChild("The Arkenstone").Parent = localplr.Backpack
  937.         else
  938.             plr.Character:FindFirstChild("The Arkenstone").Parent = localplr
  939.         end
  940.     end
  941. end
  942. local Message = Instance.new("BindableEvent")
  943. game.StarterGui:SetCore("CoreGuiChatConnections", {ChatWindow = {MessagePosted = Message}})
  944. chatbar.FocusLost:Connect(function(enter,input)
  945.     print(enter)
  946.     if enter == true then
  947.         Message:Fire(chatbar.Text)
  948.     end
  949. end)
  950. UserInputService.InputBegan:Connect(function(key, gameprocess)
  951.     if key.KeyCode == Enum.KeyCode.Slash then
  952.         task.wait()
  953.         chatbar:CaptureFocus()
  954.     end
  955. end)
  956.  
  957.  
  958. local function chat(text)
  959.     local function chatt(tex)
  960.         equipEnlighten()
  961.         wait(0.2)
  962.         local message = string.gsub(tex,";","")
  963.         Message:Fire(message)
  964.         wait(0.2)
  965.         unequipEnlighten()
  966.     end
  967.     local co = coroutine.create(chatt)
  968.     coroutine.resume(co, text)
  969. end
  970. local function createblock(x,y,z)
  971.     task.wait(0.2)
  972.     local cord = CFrame.new(x,y,z)
  973.     localplr.Character.HumanoidRootPart.CFrame = cord
  974.     local tool = localplr.Backpack:FindFirstChild("Build")
  975.     if tool then
  976.         tool.Parent = localplr.Character
  977.         local args = {
  978.             [1] = Vector3.new(x,y,z),
  979.             [2] = Enum.NormalId.Top,
  980.             [3] = workspace.Trrain:FindFirstChild("Chunk"):FindFirstChild("Mesh"),
  981.             [4] = Color3.new(1, 1, 1),
  982.             [5] = "Smooth"
  983.         }
  984.         game:GetService("Players").LocalPlayer.Backpack:WaitForChild("Events"):FireServer(unpack(args))
  985.         task.wait(0.2)
  986.         local equip = localplr.Character:FindFirstChild("Build")
  987.         if equip then
  988.             equip.Parent = localplr.Backpack
  989.         end
  990.     end
  991. end
  992. local function chatt(text)
  993.     local function chattt(tex)
  994.         equipEnlighten()
  995.         wait(0.2)
  996.         local message = tex
  997.         Message:Fire(message)
  998.     end
  999.     local co = coroutine.create(chattt)
  1000.     coroutine.resume(co,text)
  1001. end
  1002. local function normalchat(msg)
  1003.     Message:Fire(msg)
  1004. end
  1005. antis = createsection("Anti's")
  1006. neon = createtoggle("Anti Neon Blocks", antis)
  1007. neon.MouseButton1Click:Connect(function()
  1008.     local char = localplr
  1009.     local var = neon:FindFirstChild("Toggle")
  1010.     if var.Value == true then
  1011.         localplr.Character:WaitForChild("Neon").Enabled = false
  1012.     else
  1013.         localplr.Character:WaitForChild("Neon").Enabled = true
  1014.     end
  1015. end)
  1016. createbutton("Anti Jail", antis, false).MouseButton1Click:Connect(function()
  1017.     local char = localplr.Character
  1018.     if char:FindFirstChild("Jail") then
  1019.         char:FindFirstChild("Jail"):Destroy()
  1020.     end
  1021. end)
  1022. createbutton("Anti Blind", antis, false).MouseButton1Click:Connect(function()
  1023.     if localplr.PlayerGui:FindFirstChild("BlindGUI") then
  1024.         localplr.PlayerGui:FindFirstChild("BlindGUI").Frame.Visible = false
  1025.     end
  1026. end)
  1027. createbutton("Anti Colorless", antis, false).MouseButton1Click:Connect(function()
  1028.     if game.Lighting:FindFirstChild("RGB") then
  1029.         game.Lighting:FindFirstChild("RGB").Enabled = false
  1030.     end
  1031. end)
  1032. createbutton("Anti Myopic", antis, false).MouseButton1Click:Connect(function()
  1033.     if game.Lighting:FindFirstChild("Blur") then
  1034.         game.Lighting:FindFirstChild("Blur").Enabled = false
  1035.     end
  1036. end)
  1037. localplr:SetAttribute("Flying", false)
  1038. fly = createtoggle("Anti Fly", antis)
  1039. fly.MouseButton1Click:Connect(function()
  1040.     local var = fly:FindFirstChild("Toggle")
  1041.     if var.Value == true then
  1042.         localplr:SetAttribute("Flying", false)
  1043.     else
  1044.         localplr:SetAttribute("Flying", true)
  1045.     end
  1046. end)
  1047.  
  1048. createbutton("Anti Fog", antis, false).MouseButton1Click:Connect(function()
  1049.     if game.Lighting:FindFirstChild("Fog") then
  1050.         game.Lighting:FindFirstChild("Fog").Density = 0
  1051.     end
  1052. end)
  1053. createbutton("Anti Void", antis, false).MouseButton1Click:Connect(function()
  1054.     local spawnpoint = game.Workspace:FindFirstChildWhichIsA("SpawnLocation")
  1055.     localplr.Character.HumanoidRootPart.CFrame = spawnpoint.CFrame + Vector3.new(0,5,0)
  1056. end)
  1057. createbutton("Anti Tackle", antis, false).MouseButton1Click:Connect(function()
  1058.     localplr.Character.Humanoid.PlatformStand = false
  1059. end)
  1060. createbutton("Anti Gravity", antis, false).MouseButton1Click:Connect(function()
  1061.     workspace.Gravity = 196.2
  1062. end)
  1063. createbutton("Anti Speed", antis, false).MouseButton1Click:Connect(function()
  1064.     localplr.Character.Humanoid.Walkspeed = 16
  1065. end)
  1066. createbutton("Anti Jumpower", antis, false).MouseButton1Click:Connect(function()
  1067.     localplr.Character.Humanoid.JumpPower = 50
  1068. end)
  1069. local function anticrash()
  1070.     local back = localplr:FindFirstChild("Backpack")
  1071.     if back then
  1072.         local enlighten
  1073.         if back:FindFirstChild("The Arkenstone") then
  1074.             enlighten = back:FindFirstChild("The Arkenstone")
  1075.         elseif localplr.Character:FindFirstChild("The Arkenstone") then
  1076.             enlighten = localplr.Character:FindFirstChild("The Arkenstone")
  1077.         end
  1078.         if enlighten then
  1079.             enlighten.Parent = localplr
  1080.             notify("Your enlighten is safe, use Extras => Execute")
  1081.         end
  1082.         notify("WARNING! Your backpack is deleted.\n Reset to get backpack").BackgroundColor3 = Color3.new(1,0,0)
  1083.         task.wait(0.1)
  1084.         back:Destroy()
  1085.     end
  1086.    
  1087. end
  1088. createbutton("Anti Bkit Crash (No enlighten method)", antis, false).MouseButton1Click:Connect(anticrash)
  1089. autoanticrash = createtoggle("Auto Anti Bkit Crash", antis)
  1090. local aac = autoanticrash:FindFirstChild("Toggle")
  1091. mutebypass = createtoggle("Anti Mute (Bypass)", antis)
  1092. local scr = localplr.PlayerScripts.ChatScript
  1093. mutebypass.MouseButton1Click:Connect(function()
  1094.     scr.Enabled = true
  1095. end)
  1096. local mbval = mutebypass:FindFirstChild("Toggle")
  1097. chatbar.Focused:Connect(function()
  1098.     if mbval.Value == false then
  1099.         if localplr:GetAttribute("Muted") == true then
  1100.             scr.Enabled = false
  1101.         end
  1102.     end
  1103. end)
  1104. chatbar.FocusLost:Connect(function(enter)
  1105.     if mbval.Value == false then
  1106.         if localplr:GetAttribute("Muted") == true then
  1107.             wait(0.3)
  1108.             scr.Enabled = true
  1109.         end
  1110.     else
  1111.         scr.Enabled = true
  1112.     end
  1113. end)
  1114. local chatbar = Instance.new("TextBox")
  1115. boombox = createhiddenmenu("Boombox")
  1116. local function music(id)
  1117.     local tool = localplr.Character:FindFirstChild("SuperFlyGoldBoombox")
  1118.     local event
  1119.     if tool then
  1120.         event = tool:FindFirstChild("Remote")
  1121.         if event then
  1122.             event:FireServer("PlaySong",id)
  1123.         end
  1124.     else
  1125.         notify("No Boombox found")
  1126.     end
  1127. end
  1128.  
  1129. createbutton("Stop Music", boombox).MouseButton1Click:Connect(function()
  1130.     music(0)
  1131. end)
  1132. createbutton("Chicken Nuggets", boombox).MouseButton1Click:Connect(function()
  1133.     music(9245561450)
  1134. end)
  1135. createbutton("cowbell beat (LOUD)", boombox).MouseButton1Click:Connect(function()
  1136.     music(4776398821)
  1137. end)
  1138. createbutton("Beat Phonk", boombox).MouseButton1Click:Connect(function()
  1139.     music(14145620741)
  1140. end)
  1141. createbutton("Relaxed Scene", boombox).MouseButton1Click:Connect(function()
  1142.     music(1848354536)
  1143. end)
  1144. createbutton("Gotta walk (Vocal Song)", boombox).MouseButton1Click:Connect(function()
  1145.     music(9044481459)
  1146. end)
  1147. createbutton("This song made by....)", boombox).MouseButton1Click:Connect(function()
  1148.     music(6753817247)
  1149. end)
  1150. createbutton("THIS AUDO WAS MADE BY FDMSKJGJAFL", boombox).MouseButton1Click:Connect(function()
  1151.     music(6781116057)
  1152. end)
  1153. createbutton("random guitar song (Vocal Song)", boombox).MouseButton1Click:Connect(function()
  1154.     music(1845838703)
  1155. end)
  1156. createbutton("We could be kings... (Vocal Song)", boombox).MouseButton1Click:Connect(function()
  1157.     music(1840030788)
  1158. end)
  1159. createbutton("made by sego gay", boombox).MouseButton1Click:Connect(function()
  1160.     music(7006487793)
  1161. end)
  1162. createbutton("Epic song", boombox).MouseButton1Click:Connect(function()
  1163.     music(1837018896)
  1164. end)
  1165. createbutton("Dont let me go", boombox).MouseButton1Click:Connect(function()
  1166.     music(1839920066)
  1167. end)
  1168. createbutton("aaa li loua", boombox).MouseButton1Click:Connect(function()
  1169.     music(1846627271)
  1170. end)
  1171. createbutton("funni song", boombox).MouseButton1Click:Connect(function()
  1172.     music(6765683083)
  1173. end)
  1174. gears = createsection("Gears")
  1175. createinfo("Type here anyone's name to give gears to", gears)
  1176. local pgear = createtextbox("Select Player", gears)
  1177. pgear.Text = "me"
  1178. createbutton("Boombox Menu", gears).MouseButton1Click:Connect(function()
  1179.     openmenu(boombox)
  1180. end)
  1181. createinfo("Gears", gears)
  1182. createbutton("Rainbow Periastron Sword", gears).MouseButton1Click:Connect(function()
  1183.     chat(";gear "..pgear.Text.." 159229806")
  1184. end)
  1185. createbutton("DiscoBall", gears).MouseButton1Click:Connect(function()
  1186.     chat(";gear "..pgear.Text.." 147937284")
  1187. end)
  1188. createbutton("Staff of never ending frost", gears).MouseButton1Click:Connect(function()
  1189.     chat(";gear "..pgear.Text.." 151292047")
  1190. end)
  1191. createbutton("Pretty Pretty Princess", gears).MouseButton1Click:Connect(function()
  1192.     chat(";gear "..pgear.Text.." 53039427")
  1193. end)
  1194. createbutton("Fake C4", gears).MouseButton1Click:Connect(function()
  1195.     chat(";gear "..pgear.Text.." 104642566")
  1196. end)
  1197. createbutton("Advanced Paint Bucket", gears).MouseButton1Click:Connect(function()
  1198.     chat(";gear "..pgear.Text.." 18474459")
  1199. end)
  1200. createbutton("Pickaxe", gears).MouseButton1Click:Connect(function()
  1201.     chat(";gear "..pgear.Text.." 583030187")
  1202. end)
  1203. createbutton("Flashbang", gears).MouseButton1Click:Connect(function()
  1204.     chat(";gear "..pgear.Text.." 16979083")
  1205. end)
  1206. createbutton("Subspace Tripmine", gears).MouseButton1Click:Connect(function()
  1207.     chat(";gear "..pgear.Text.." 11999247")
  1208. end)
  1209. createbutton("Body Swap Potion", gears).MouseButton1Click:Connect(function()
  1210.     chat(";gear "..pgear.Text.." 78730532")
  1211. end)
  1212. createbutton("Orange Lambo", gears).MouseButton1Click:Connect(function()
  1213.     chat(";gear "..pgear.Text.." 253519495")
  1214. end)
  1215. createbutton("Taxi", gears).MouseButton1Click:Connect(function()
  1216.     chat(";gear "..pgear.Text.." 125013849")
  1217. end)
  1218. createbutton("Rail Runner-5000", gears).MouseButton1Click:Connect(function()
  1219.     chat(";gear "..pgear.Text.." 79446473")
  1220. end)
  1221. createbutton("Dagger of shattered dimensions", gears).MouseButton1Click:Connect(function()
  1222.     chat(";gear "..pgear.Text.." 71037101")
  1223. end)
  1224. createbutton("Platform Producer", gears).MouseButton1Click:Connect(function()
  1225.     chat(";gear "..pgear.Text.." 34898883")
  1226. end)
  1227. createbutton("Inglaciator-6000", gears).MouseButton1Click:Connect(function()
  1228.     chat(";gear "..pgear.Text.." 185422055")
  1229. end)
  1230. createbutton("R-Orb", gears).MouseButton1Click:Connect(function()
  1231.     chat(";gear "..pgear.Text.." 98411393")
  1232. end)
  1233. createbutton("Crossbow of the sea", gears).MouseButton1Click:Connect(function()
  1234.     chat(";gear "..pgear.Text.." 236438668")
  1235. end)
  1236. createbutton("Stravants Lighting", gears).MouseButton1Click:Connect(function()
  1237.     chat(";r6 "..pgear.Text)
  1238.     task.wait(1)
  1239.     chat(";gear "..pgear.Text.." 169669671")
  1240. end)
  1241. createinfo("Pack of gears buggy a lil")
  1242. createbutton("Pack Of Gears (over 200 gears)", gears).MouseButton1Click:Connect(function()
  1243.     local list = {
  1244.         ";gear "..pgear.Text.." 68539623",
  1245.         ";gear "..pgear.Text.." 169669671",
  1246.         ";gear "..pgear.Text.." 69964719",
  1247.         ";gear "..pgear.Text.." 18474459",
  1248.         ";gear "..pgear.Text.." 71037101",
  1249.         ";gear "..pgear.Text.." 233520425",
  1250.         ";gear "..pgear.Text.." 566780416",
  1251.         ";gear "..pgear.Text.." 58574445",
  1252.         ";gear "..pgear.Text.." 168142869",
  1253.         ";gear "..pgear.Text.." 97311482",
  1254.         ";gear "..pgear.Text.." 96095042",
  1255.         ";gear "..pgear.Text.." 74904396",
  1256.         ";gear "..pgear.Text.." 63721732",
  1257.         ";gear "..pgear.Text.." 124126528",
  1258.         ";gear "..pgear.Text.." 162857357",
  1259.         ";gear "..pgear.Text.." 111876831",
  1260.         ";gear "..pgear.Text.." 33866728",
  1261.         ";gear "..pgear.Text.." 113299590",
  1262.         ";gear "..pgear.Text.." 163348758",
  1263.         ";gear "..pgear.Text.." 35293856",
  1264.         ";gear "..pgear.Text.." 52625744",
  1265.         ";gear "..pgear.Text.." 88146497",
  1266.         ";gear "..pgear.Text.." 80576928",
  1267.         ";gear "..pgear.Text.." 91360052",
  1268.         ";gear "..pgear.Text.." 549915884",
  1269.         ";gear "..pgear.Text.." 236442380",
  1270.         ";gear "..pgear.Text.." 31839411",
  1271.         ";gear "..pgear.Text.." 34398938",
  1272.         ";gear "..pgear.Text.." 27474371",
  1273.         ";gear "..pgear.Text.." 45754061",
  1274.         ";gear "..pgear.Text.." 148791414",
  1275.         ";gear "..pgear.Text.." 110789105",
  1276.         ";gear "..pgear.Text.." 25974222",
  1277.         ";gear "..pgear.Text.." 243788010",
  1278.         ";gear "..pgear.Text.." 139578061",
  1279.         ";gear "..pgear.Text.." 98411393",
  1280.         ";gear "..pgear.Text.." 88885524",
  1281.         ";gear "..pgear.Text.." 73888479",
  1282.         ";gear "..pgear.Text.." 110337853",
  1283.         ";gear "..pgear.Text.." 88143093",
  1284.         ";gear "..pgear.Text.." 73265108",
  1285.         ";gear "..pgear.Text.." 212296936",
  1286.         ";gear "..pgear.Text.." 47597835",
  1287.         ";gear "..pgear.Text.." 392057539",
  1288.         ";gear "..pgear.Text.." 323477973",
  1289.         ";gear "..pgear.Text.." 904534058",
  1290.         ";gear "..pgear.Text.." 2906732820",
  1291.         ";gear "..pgear.Text.." 292970740",
  1292.         ";gear "..pgear.Text.." 306971294",
  1293.         ";gear "..pgear.Text.." 1602503043",
  1294.         ";gear "..pgear.Text.." 1208300505",
  1295.         ";gear "..pgear.Text.." 30392263",
  1296.         ";gear "..pgear.Text.." 12890798",
  1297.         ";gear "..pgear.Text.." 193769809",
  1298.         ";gear "..pgear.Text.." 26421972",
  1299.         ";gear "..pgear.Text.." 2549005282",
  1300.         ";gear "..pgear.Text.." 101191388",
  1301.         ";gear "..pgear.Text.." 124472052",
  1302.         ";gear "..pgear.Text.." 16979083",
  1303.         ";gear "..pgear.Text.." 1132887630",
  1304.         ";gear "..pgear.Text.." 11419319",
  1305.         ";gear "..pgear.Text.." 121946387",
  1306.         ";gear "..pgear.Text.." 95354288",
  1307.         ";gear "..pgear.Text.." 11377306",
  1308.         ";gear "..pgear.Text.." 12187348",
  1309.         ";gear "..pgear.Text.." 127506105",
  1310.         ";gear "..pgear.Text.." 12848902",
  1311.         ";gear "..pgear.Text.." 16688968",
  1312.         ";gear "..pgear.Text.." 168141301",
  1313.         ";gear "..pgear.Text.." 15932306",
  1314.         ";gear "..pgear.Text.." 10468797",
  1315.         ";gear "..pgear.Text.." 257810065",
  1316.         ";gear "..pgear.Text.." 3130875522",
  1317.         ";gear "..pgear.Text.." 11452821",
  1318.         ";gear "..pgear.Text.." 114020480",
  1319.         ";gear "..pgear.Text.." 2758794374",
  1320.         ";gear "..pgear.Text.." 1981809272",
  1321.         ";gear "..pgear.Text.." 170897263",
  1322.         ";gear "..pgear.Text.." 11563251",
  1323.         ";gear "..pgear.Text.." 130113146",
  1324.         ";gear "..pgear.Text.." 107458429",
  1325.         ";gear "..pgear.Text.." 517827962",
  1326.         ";gear "..pgear.Text.." 398675172",
  1327.         ";gear "..pgear.Text.." 42321801",
  1328.         ";gear "..pgear.Text.." 253519495",
  1329.         ";gear "..pgear.Text.." 22960388",
  1330.         ";gear "..pgear.Text.." 16722267",
  1331.         ";gear "..pgear.Text.." 427947884",
  1332.         ";gear "..pgear.Text.." 11999247",
  1333.         ";gear "..pgear.Text.." 99119158",
  1334.         ";gear "..pgear.Text.." 63253701",
  1335.         ";gear "..pgear.Text.." 188853857",
  1336.         ";gear "..pgear.Text.." 11450664",
  1337.         ";gear "..pgear.Text.." 28275809",
  1338.         ";gear "..pgear.Text.." 94233344",
  1339.         ";gear "..pgear.Text.." 20721924",
  1340.         ";gear "..pgear.Text.." 953518028",
  1341.         ";gear "..pgear.Text.." 409745306",
  1342.         ";gear "..pgear.Text.." 84012460",
  1343.         ";gear "..pgear.Text.." 46846246",
  1344.         ";gear "..pgear.Text.." 292969139",
  1345.         ";gear "..pgear.Text.." 30393548",
  1346.         ";gear "..pgear.Text.." 139574344",
  1347.         ";gear "..pgear.Text.." 1119906090",
  1348.         ";gear "..pgear.Text.." 292969932",
  1349.         ";gear "..pgear.Text.." 10468915",
  1350.         ";gear "..pgear.Text.." 22788134",
  1351.         ";gear "..pgear.Text.." 31314966",
  1352.         ";gear "..pgear.Text.." 12547976",
  1353.         ";gear "..pgear.Text.." 49491736",
  1354.         ";gear "..pgear.Text.." 103358098",
  1355.         ";gear "..pgear.Text.." 101078559",
  1356.         ";gear "..pgear.Text.." 295460702",
  1357.         ";gear "..pgear.Text.." 2221409781",
  1358.         ";gear "..pgear.Text.." 928914739",
  1359.         ";gear "..pgear.Text.." 101106419",
  1360.         ";gear "..pgear.Text.." 11999235",
  1361.         ";gear "..pgear.Text.." 44115926",
  1362.         ";gear "..pgear.Text.." 211944997",
  1363.         ";gear "..pgear.Text.." 52627419",
  1364.         ";gear "..pgear.Text.." 686806111",
  1365.         ";gear "..pgear.Text.." 1132887630",
  1366.         ";gear "..pgear.Text.." 57902859",
  1367.         ";gear "..pgear.Text.." 42845609",
  1368.         ";gear "..pgear.Text.." 1183007014",
  1369.         ";gear "..pgear.Text.." 21754543",
  1370.         ";gear "..pgear.Text.." 984393",
  1371.         ";gear "..pgear.Text.." 164207580",
  1372.         ";gear "..pgear.Text.." 1748604797",
  1373.         ";gear "..pgear.Text.." 80576967",
  1374.         ";gear "..pgear.Text.." 56561579",
  1375.         ";gear "..pgear.Text.." 746686384",
  1376.         ";gear "..pgear.Text.." 30847779",
  1377.         ";gear "..pgear.Text.." 92142799",
  1378.         ";gear "..pgear.Text.." 12562495",
  1379.         ";gear "..pgear.Text.." 131592085",
  1380.         ";gear "..pgear.Text.." 10758456",
  1381.         ";gear "..pgear.Text.." 94794774",
  1382.         ";gear "..pgear.Text.." 146071355",
  1383.         ";gear "..pgear.Text.." 28277486",
  1384.         ";gear "..pgear.Text.." 10727852",
  1385.         ";gear "..pgear.Text.." 467935723",
  1386.         ";gear "..pgear.Text.." 34901961",
  1387.         ";gear "..pgear.Text.." 77443491",
  1388.         ";gear "..pgear.Text.." 55301897",
  1389.         ";gear "..pgear.Text.." 10469910",
  1390.         ";gear "..pgear.Text.." 243790334",
  1391.         ";gear "..pgear.Text.." 122278207",
  1392.         ";gear "..pgear.Text.." 147143863",
  1393.         ";gear "..pgear.Text.." 16895215",
  1394.         ";gear "..pgear.Text.." 93136746",
  1395.         ";gear "..pgear.Text.." 1119904760",
  1396.         ";gear "..pgear.Text.." 94233286",
  1397.         ";gear "..pgear.Text.." 268533852",
  1398.         ";gear "..pgear.Text.." 25317304",
  1399.         ";gear "..pgear.Text.." 168143042",
  1400.         ";gear "..pgear.Text.." 13207169",
  1401.         ";gear "..pgear.Text.." 24346755",
  1402.         ";gear "..pgear.Text.." 68603151",
  1403.         ";gear "..pgear.Text.." 1915020448",
  1404.         ";gear "..pgear.Text.." 515687734",
  1405.         ";gear "..pgear.Text.." 319656339",
  1406.         ";gear "..pgear.Text.." 17527923",
  1407.         ";gear "..pgear.Text.." 20064349",
  1408.         ";gear "..pgear.Text.." 430066424",
  1409.         ";gear "..pgear.Text.." 304721834",
  1410.         ";gear "..pgear.Text.." 33866846",
  1411.         ";gear "..pgear.Text.." 39258329",
  1412.         ";gear "..pgear.Text.." 16641274",
  1413.         ";gear "..pgear.Text.." 11956382",
  1414.         ";gear "..pgear.Text.." 361950297",
  1415.         ";gear "..pgear.Text.." 221181437",
  1416.         ";gear "..pgear.Text.." 105351545",
  1417.         ";gear "..pgear.Text.." 223785473",
  1418.         ";gear "..pgear.Text.." 80597060",
  1419.         ";gear "..pgear.Text.." 2002056831",
  1420.         ";gear "..pgear.Text.." 24713330",
  1421.         ";gear "..pgear.Text.." 406101128",
  1422.         ";gear "..pgear.Text.." 1227732454",
  1423.         ";gear "..pgear.Text.." 83021250",
  1424.         ";gear "..pgear.Text.." 1102656209"
  1425.     }  
  1426.     for i, message in ipairs(list) do
  1427.         wait(0.4)
  1428.         chatt(message)
  1429.     end
  1430.     unequipEnlighten()
  1431. end)
  1432. createinfo("Some Tools Stuff", gears)
  1433. createbutton("Use all tools", gears).MouseButton1Click:Connect(function()
  1434.     local Backpack = localplr:FindFirstChildOfClass("Backpack")
  1435.     local ammount = 1
  1436.     local delay_ = 1
  1437.     for _, v in ipairs(Backpack:GetChildren()) do
  1438.         v.Parent = localplr.Character
  1439.         task.spawn(function()
  1440.             for _ = 1, ammount do
  1441.                 v:Activate()
  1442.                 if delay_ then
  1443.                     wait(delay_)
  1444.                 end
  1445.             end
  1446.             v.Parent = Backpack
  1447.         end)
  1448.     end
  1449. end)
  1450. createinfo("specific tool example: if youre holding", gears)
  1451. createinfo("a bomb, then it will drop all bomb", gears)
  1452. createbutton("Use all specific tool that youre holding", gears).MouseButton1Click:Connect(function()
  1453.     local Backpack = localplr:FindFirstChildOfClass("Backpack")
  1454.     local ammount = 1
  1455.     local delay_ = 1
  1456.     for _, v in ipairs(Backpack:GetChildren()) do
  1457.         v.Parent = localplr.Character
  1458.         task.spawn(function()
  1459.             for _ = 1, ammount do
  1460.                 v:Activate()
  1461.                 if delay_ then
  1462.                     wait(delay_)
  1463.                 end
  1464.             end
  1465.             v.Parent = Backpack
  1466.         end)
  1467.     end
  1468. end)
  1469. createbutton("Drop all specific tool that youre holding", gears).MouseButton1Click:Connect(function()
  1470.     local char = localplr.Character or localplr.CharacterAdded:Wait()
  1471.     local tool = char:FindFirstChildWhichIsA("Tool")
  1472.     for i,v in pairs(localplr.Backpack:GetChildren()) do
  1473.         if v:IsA("Tool") then
  1474.             if v.Name == tool.Name then
  1475.                 v.Parent = localplr.Character
  1476.             end
  1477.         end
  1478.     end
  1479.     wait()
  1480.     for i,v in pairs(localplr.Character:GetChildren()) do
  1481.         if v:IsA("Tool") then
  1482.             v.Parent = workspace
  1483.         end
  1484.     end
  1485. end)
  1486. createbutton("Drop all tools (except enlighten)", gears).MouseButton1Click:Connect(function()
  1487.     for i,v in pairs(localplr.Character:GetChildren()) do
  1488.         if v:IsA("Tool") then
  1489.             if v.Name == "The Arkenstone" then
  1490.                 v.Parent = localplr.Backpack
  1491.             end
  1492.         end
  1493.     end
  1494.     for i,v in pairs(localplr.Backpack:GetChildren()) do
  1495.         if v:IsA("Tool") then
  1496.             if v.Name ~= "The Arkenstone" then
  1497.                 v.Parent = localplr.Character
  1498.             end
  1499.         end
  1500.     end
  1501.     wait()
  1502.     for i,v in pairs(localplr.Character:GetChildren()) do
  1503.         if v:IsA("Tool") then
  1504.             v.Parent = workspace
  1505.         end
  1506.     end
  1507. end)
  1508. createbutton("Drop Holding Tool", gears).MouseButton1Click:Connect(function()
  1509.     local char = localplr.Character or localplr.CharacterAdded:Wait()
  1510.     local tool = char:FindFirstChildWhichIsA("Tool")
  1511.     if tool then
  1512.         tool.Parent = workspace
  1513.     end
  1514. end)
  1515. detector = createsection("Detector")
  1516. createinfo("There are players who got enlighten",detector)
  1517. local ba = createbutton("Click to check who got enlighten:",detector, false)
  1518. ba.MouseButton1Click:Connect(function()
  1519.     clear(detector)
  1520.     for _, player in ipairs(game.Players:GetPlayers()) do
  1521.         if player.Backpack:FindFirstChild("The Arkenstone") or player.Character:FindFirstChild("The Arkenstone") or player:FindFirstChild("The Arkenstone") then
  1522.             local a = createbutton(player.DisplayName .." (@" ..player.Name..")",detector,true)
  1523.             if testforAdmin(player.Name) then
  1524.                 a.BackgroundColor3 = Color3.new(1,1,theme.Value.B-0.3)
  1525.             end
  1526.             a.MouseButton1Click:Connect(function()
  1527.                 openmenu(players)
  1528.                 plr.Text = player.Name
  1529.             end)
  1530.             wait(0.1)
  1531.         end
  1532.     end
  1533. end)
  1534.  
  1535. cmds = createsection("Cmds")
  1536. autochat = createtoggle("Be safe: R6 when you die", cmds)
  1537.  
  1538. local function onCharacterAdded(character)
  1539.     local player = game:GetService("Players").LocalPlayer
  1540.     local humanoid = character:WaitForChild("Humanoid", 5)
  1541.     if not humanoid then
  1542.         return
  1543.     end
  1544.     humanoid.Died:Connect(function()
  1545.         if autochat:FindFirstChild("Toggle").Value == false then
  1546.             for i = 1,3 do
  1547.                 chat(";r6 me")
  1548.                 wait(0.1)
  1549.             end
  1550.         end
  1551.     end)
  1552. end
  1553. game:GetService("Players").LocalPlayer.CharacterAdded:Connect(onCharacterAdded)
  1554. do
  1555.     local alreadyExistingCharacter = game:GetService("Players").LocalPlayer.Character
  1556.     if alreadyExistingCharacter then
  1557.         onCharacterAdded(alreadyExistingCharacter )
  1558.     end
  1559. end
  1560.  
  1561.  
  1562. abuseothers = createtoggle("Abuse Others", cmds)
  1563. abuseothers.MouseButton1Click:Connect(function()
  1564.     local var = abuseothers:FindFirstChild("Toggle")
  1565.     if var.Value == true then
  1566.         while true do
  1567.             local cmds ={
  1568.                 [1] = ";glitch others",
  1569.                 [2] = ";clearinv others",
  1570.                 [3] = ";myopic",
  1571.                 [4] = ";colorless",
  1572.                 [5] = ";mute others",
  1573.                 [6] = ";blind others",
  1574.                 [7] = ";jail others",
  1575.                 [8] = ";noclip others",
  1576.                 [9] = ";invisible others",
  1577.                 [10] = ";freeze others",
  1578.                 [11] = ";fog 10000",
  1579.                 [12] = ";tackle others"
  1580.             }
  1581.             local number = math.random(1,12)
  1582.             local cmd = cmds[number]
  1583.             chatt(cmd)
  1584.             wait(0.1)
  1585.             if var.Value == true then
  1586.                 unequipEnlighten()
  1587.                 break
  1588.             end
  1589.         end
  1590.     else
  1591.     end
  1592. end)
  1593.  
  1594. crash = createtoggle("Crash server (;bkit, 60 seconds),patched",cmds)
  1595. crash.MouseButton1Click:Connect(function()
  1596.     local var = crash:FindFirstChild("Toggle")
  1597.     if var.Value == true then
  1598.         local num = 0
  1599.         while true do
  1600.             num = num + 1
  1601.             chat(";bkit rest rest rest rest rest rest rest rest rest rest rest rest rest rest rest rest rest rest rest")
  1602.             wait(1)
  1603.             if var.Value == true or num == 60 then
  1604.                 turnoff(crash)
  1605.                 break
  1606.             end
  1607.         end
  1608.     end
  1609. end)
  1610. createbutton("Clearinv others", cmds).MouseButton1Click:Connect(function()
  1611.     chat(";clearinv others")
  1612. end)
  1613. createbutton(";Debug", cmds).MouseButton1Click:Connect(function()
  1614.     chat(";debug")
  1615. end)
  1616.  
  1617. players = createsection("Players")
  1618. createinfo("(YOU MUST HAVE ENLIGHTEN FOR THIS!)", players)
  1619. plr = createtextbox("Selected Player (can be shortened)", players)
  1620. dropdown = createdropdown("Choose Player", players)
  1621. dropdown.MouseButton1Click:Connect(function()
  1622.     clear(dropdown)
  1623.     createdropdownbutton("All", dropdown, true).MouseButton1Click:Connect(function()
  1624.         plr.Text = "All"
  1625.     end)
  1626.     createdropdownbutton("Rest", dropdown, true).MouseButton1Click:Connect(function()
  1627.         plr.Text = "Rest"
  1628.     end)
  1629.     createdropdownbutton("Random", dropdown, true).MouseButton1Click:Connect(function()
  1630.         local ran = math.random(1,#game.Players:GetChildren())
  1631.         plr.Text = game.Players:GetChildren()[ran].Name
  1632.     end)
  1633.     local ba = createdropdownbutton("Me", dropdown, true)
  1634.     if testforAdmin(localplr.Name) then
  1635.         ba.BackgroundColor3 = Color3.new(1,1,theme.Value.B-0.3)
  1636.     end
  1637.     ba.MouseButton1Click:Connect(function()
  1638.         plr.Text = "Me"
  1639.     end)
  1640.     for _, child in ipairs(game:GetService("Players"):GetChildren()) do
  1641.         if child:IsA("Player") then
  1642.             if child.Name == localplr.Name then
  1643.             else
  1644.                 local t = createdropdownbutton("Not Found", dropdown, true)
  1645.                 if child.Name == child.DisplayName then
  1646.                     t.Text = child.DisplayName
  1647.                 else
  1648.                     t.Text = child.DisplayName.." (@"..child.Name..")"
  1649.                 end
  1650.                 if testforAdmin(child.Name) then
  1651.                     t.BackgroundColor3 = Color3.new(1,1,theme.Value.B-0.3)
  1652.                 end
  1653.                 t.MouseButton1Click:Connect(function()
  1654.                     plr.Text = child.Name
  1655.                 end)
  1656.             end
  1657.         end
  1658.     end
  1659. end)
  1660. local previousnum = 0
  1661. abuse = createtoggle("Abuse Player",players)
  1662. abuse.MouseButton1Click:Connect(function()
  1663.     local var = abuse:FindFirstChild("Toggle")
  1664.     if var.Value == true then
  1665.         while true do
  1666.             local cmds ={
  1667.                 [1] = ";glitch "..plr.Text,
  1668.                 [2] = ";clearinv "..plr.Text,
  1669.                 [3] = ";mute "..plr.Text,
  1670.                 [4] = ";blind "..plr.Text,
  1671.                 [5] = ";jail "..plr.Text,
  1672.                 [6] = ";noclip "..plr.Text,
  1673.                 [7] = ";invisible "..plr.Text,
  1674.                 [8] = ";freeze "..plr.Text,
  1675.                 [9] = ";tackle "..plr.Text
  1676.             }
  1677.             local number = math.random(1,9)
  1678.             if number == previousnum then
  1679.                 repeat
  1680.                     number = math.random(1,9)
  1681.                 until number ~= previousnum
  1682.             end
  1683.             local cmd = cmds[number]
  1684.             if plr.Text == "" or string.find(string.lower(plr.Text), "me") then
  1685.             previousnum = number
  1686.             else
  1687.                 chat(cmd)
  1688.             end
  1689.             wait(0.2)
  1690.             if var.Value == true then
  1691.                 break
  1692.             end
  1693.         end
  1694.     end
  1695. end)
  1696. crashplr = createtoggle("Crash Player (Patched)",players)
  1697. crashplr.MouseButton1Click:Connect(function()
  1698.     local var = crashplr:FindFirstChild("Toggle")
  1699.     if var.Value == true then
  1700.         chat(";god ".. plr.Text)
  1701.         wait(0.4)
  1702.         chat(";freeze ".. plr.Text)
  1703.         wait(0.4)
  1704.         while true do
  1705.             local disabled = plr.Text
  1706.             local disabledplrs = findplr(disabled, true)
  1707.             local player = game.Players:FindFirstChild(disabledplrs[1])
  1708.             if player then
  1709.             else
  1710.                 turnoff(crashplr)
  1711.                 break
  1712.             end
  1713.             chat(";bkit rest rest rest rest rest rest rest")
  1714.             wait(0.5)
  1715.             local str = ""
  1716.             for i = 1,#disabledplrs do
  1717.                 if disabledplrs[i] == localplr.Name then
  1718.                 else
  1719.                     str = str.." "..disabledplrs[i]
  1720.                 end
  1721.             end
  1722.             chat(";clearinv"..str)
  1723.             wait(0.5)
  1724.             if var.Value == true then
  1725.                 break
  1726.             end
  1727.         end
  1728.     end
  1729. end)
  1730.  
  1731. autodon = createtoggle("Auto Donate (60)", players)
  1732. autodon.MouseButton1Click:Connect(function()
  1733.     local var = autodon:FindFirstChild("Toggle")
  1734.     if var.Value == true then
  1735.         while true do
  1736.             wait(59)
  1737.             if var.Value == true then
  1738.                 break
  1739.             end
  1740.             normalchat(";donate "..plr.Text.." 60")
  1741.         end
  1742.     end
  1743. end)
  1744. loopkill = createtoggle("LoopKill", players)
  1745. loopkill.MouseButton1Click:Connect(function()
  1746.     local var = loopkill:FindFirstChild("Toggle")
  1747.     if var.Value == true then
  1748.         while true do
  1749.             chat(";oof ".. plr.Text)
  1750.             wait(5)
  1751.             if var.Value == true then
  1752.                 break
  1753.             end
  1754.         end
  1755.     end
  1756. end)
  1757. createbutton("Check Backpack Gears", players, false).MouseButton1Click:Connect(function()
  1758.     local fplr = findplr(plr.Text, false)[1]
  1759.     local foundplr = game.Players:FindFirstChild(fplr)
  1760.     local backpack = foundplr:FindFirstChild("Backpack")
  1761.     if backpack then
  1762.         notify(fplr.."'s Backpack")
  1763.         for v, i in ipairs(backpack:GetChildren()) do
  1764.             if i.Name == "Build"
  1765.                 or i.Name == "Delete"
  1766.                 or i.Name == "Paint"
  1767.                 or i.Name == "Detail"
  1768.                 or i.Name == "Resize"
  1769.                 or i.Name == "Shovel"
  1770.                 or i.Name == "Glaze"
  1771.                 or i.Name == "Polish"
  1772.                 or i.Name == "Toxify"
  1773.                 or i.Name == "Sign"
  1774.                 or i.Name == "The Arkenstone"
  1775.                 or i.Name == "BTools"
  1776.                 or i:IsA("RemoteEvent") then
  1777.             else
  1778.                 notify(v..": "..i.Name)
  1779.             end
  1780.         end
  1781.     else
  1782.         notify("Unknown Error")
  1783.     end
  1784. end)
  1785. createbutton("goto", players, false).MouseButton1Click:Connect(function()
  1786.     local player = plr.Text
  1787.     localplr.Character:FindFirstChild("HumanoidRootPart").CFrame = game.Players:FindFirstChild(findplr(plr.Text,false)[1]).Character:FindFirstChild("HumanoidRootPart").CFrame
  1788. end)
  1789. createbutton("bring", players, false).MouseButton1Click:Connect(function()
  1790.     chat(";bring ".. plr.Text)
  1791. end)
  1792. createbutton("r6", players, false).MouseButton1Click:Connect(function()
  1793.     chat(";r6 ".. plr.Text)
  1794. end)
  1795. createbutton("delcubes", players, false).MouseButton1Click:Connect(function()
  1796.     chat(";delcubes ".. plr.Text)
  1797. end)
  1798. createbutton("bkit", players, false).MouseButton1Click:Connect(function()
  1799.     chat(";bkit ".. plr.Text)
  1800. end)
  1801. createbutton("unfly", players, false).MouseButton1Click:Connect(function()
  1802.     chat(";unfly ".. plr.Text)
  1803. end)
  1804. createbutton("fly", players, false).MouseButton1Click:Connect(function()
  1805.     chat(";fly ".. plr.Text)
  1806. end)
  1807. createbutton("oof", players, false).MouseButton1Click:Connect(function()
  1808.     chat(";oof ".. plr.Text)
  1809. end)
  1810. createbutton("reset", players, false).MouseButton1Click:Connect(function()
  1811.     chat(";reset ".. plr.Text)
  1812. end)
  1813. createbutton("clearinv", players, false).MouseButton1Click:Connect(function()
  1814.     chat(";clearinv ".. plr.Text)
  1815. end)
  1816. createbutton("noclip", players, false).MouseButton1Click:Connect(function()
  1817.     chat(";noclip ".. plr.Text)
  1818. end)
  1819. createbutton("clip", players, false).MouseButton1Click:Connect(function()
  1820.     chat(";clip ".. plr.Text)
  1821. end)
  1822. createbutton("stand", players, false).MouseButton1Click:Connect(function()
  1823.     chat(";stand ".. plr.Text)
  1824. end)
  1825. createbutton("tackle", players, false).MouseButton1Click:Connect(function()
  1826.     chat(";tackle ".. plr.Text)
  1827. end)
  1828. createbutton("mute", players, false).MouseButton1Click:Connect(function()
  1829.     chat(";mute ".. plr.Text)
  1830. end)
  1831. createbutton("unmute", players, false).MouseButton1Click:Connect(function()
  1832.     chat(";unmute ".. plr.Text)
  1833. end)
  1834. createbutton("enlighten", players, false).MouseButton1Click:Connect(function()
  1835.     chat(";enlighten ".. plr.Text)
  1836. end)
  1837. createbutton("disarm", players, false).MouseButton1Click:Connect(function()
  1838.     chat(";disarm ".. plr.Text)
  1839. end)
  1840. createbutton("explode", players, false).MouseButton1Click:Connect(function()
  1841.     chat(";explode ".. plr.Text.." 5")
  1842. end)
  1843. createbutton("freeze", players, false).MouseButton1Click:Connect(function()
  1844.     chat(";freeze ".. plr.Text)
  1845. end)
  1846. createbutton("unfreeze", players, false).MouseButton1Click:Connect(function()
  1847.     chat(";unfreeze ".. plr.Text)
  1848. end)
  1849. extras = createsection("Extras")
  1850. timestop = createtoggle("Disable Time Stopping", extras)
  1851. timestop.MouseButton1Click:Connect(function()
  1852.     local var = timestop:FindFirstChild("Toggle")
  1853.     if var.Value == true then
  1854.         game:GetService("ReplicatedStorage"):FindFirstChild("System").Name = "Systemd"
  1855.         wait()
  1856.         while true do
  1857.             game:GetService("ReplicatedStorage"):FindFirstChild("Systemd"):FireServer("Input")
  1858.             if var.Value == true then
  1859.                 game:GetService("ReplicatedStorage"):FindFirstChild("Systemd").Name = "System"
  1860.                 break
  1861.             end
  1862.             wait(0.1)
  1863.         end
  1864.     end
  1865. end)
  1866. createbutton("Reset Character",extras,false).MouseButton1Click:Connect(function()
  1867.     localplr.Character.Humanoid.Health = 0
  1868. end)
  1869. command = createtextbox("Execute Hidden Command",extras)
  1870. createbutton("Execute",extras).MouseButton1Click:Connect(function()
  1871.     normalchat(command.Text)
  1872. end)
  1873. local henlighten = createhiddenmenu("Enlighten Stash")
  1874. createbutton("Stash Menu",extras).MouseButton1Click:Connect(function()
  1875.     openmenu(henlighten)
  1876. end)
  1877. local x, y, z
  1878. local crds = createinfo("Stash Coordinates", henlighten)
  1879. x = math.floor(math.random(5000,10000)*3)
  1880. y = math.floor(math.random(10000,100000)*3)
  1881. z = math.floor(math.random(50000,100000)*3)
  1882. crds.Text = x..","..y..","..z
  1883. createbutton("Randomize Position",henlighten).MouseButton1Click:Connect(function()
  1884.     x = math.floor(math.random(5000,10000)*3)
  1885.     y = math.floor(math.random(10000,100000)*3)
  1886.     z = math.floor(math.random(50000,100000)*3)
  1887.     crds.Text = x..","..y..","..z
  1888. end)
  1889. local function createstash()
  1890.     x, y, z = crds.Text:match("(%d+),%s*(%d+),%s*(%d+)")
  1891.     local cord = CFrame.new(x,y,z)
  1892.     localplr.Character.HumanoidRootPart.CFrame = cord
  1893.     local equip = localplr.Character:FindFirstChild("Build")
  1894.     if equip then
  1895.         equip.Parent = localplr.Backpack
  1896.     end
  1897.     task.wait(.1)
  1898.     localplr.Character.HumanoidRootPart.Anchored = true
  1899.     createblock(x,y-3,z)
  1900.  
  1901.     createblock(x,y,z+3)
  1902.  
  1903.     createblock(x,y-3,z-3)
  1904.     createblock(x,y-3,z-6)
  1905.     createblock(x,y-3,z-9)
  1906.     createblock(x,y-3,z-12)
  1907.     createblock(x,y-3,z-15)
  1908.  
  1909.     createblock(x,y,z-18)
  1910.  
  1911.     createblock(x+3,y-3,z)
  1912.  
  1913.     createblock(x+3,y,z+3)
  1914.  
  1915.     createblock(x+3,y-3,z-3)
  1916.     createblock(x+3,y-3,z-6)
  1917.     createblock(x+3,y-3,z-9)
  1918.     createblock(x+3,y-3,z-12)
  1919.     createblock(x+3,y-3,z-15)
  1920.  
  1921.     createblock(x+3,y,z-18)
  1922.  
  1923.     createblock(x-3,y-3,z)
  1924.  
  1925.     createblock(x-3,y,z+3)
  1926.  
  1927.     createblock(x-3,y-3,z-3)
  1928.     createblock(x-3,y-3,z-6)
  1929.     createblock(x-3,y-3,z-9)
  1930.     createblock(x-3,y-3,z-12)
  1931.     createblock(x-3,y-3,z-15)
  1932.  
  1933.     createblock(x-3,y,z-18)
  1934.  
  1935.     createblock(x-6,y,z)
  1936.     createblock(x-6,y,z-3)
  1937.     createblock(x-6,y,z-6)
  1938.     createblock(x-6,y,z-9)
  1939.     createblock(x-6,y,z-12)
  1940.     createblock(x-6,y,z-15)
  1941.     createblock(x+6,y,z)
  1942.     createblock(x+6,y,z-3)
  1943.     createblock(x+6,y,z-6)
  1944.     createblock(x+6,y,z-9)
  1945.     createblock(x+6,y,z-12)
  1946.     createblock(x+6,y,z-15)
  1947.     local function refreeze()
  1948.         wait(1)
  1949.         localplr.Character.HumanoidRootPart.Anchored = false
  1950.         local cord = CFrame.new(x,y+3,z)
  1951.         localplr.Character.HumanoidRootPart.CFrame = cord
  1952.     end
  1953.     task.spawn(refreeze)
  1954. end
  1955. createbutton("Create Stash", henlighten).MouseButton1Click:Connect(createstash)
  1956. createbutton("Teleport To Stash", henlighten).MouseButton1Click:Connect(function()
  1957.     local cord = CFrame.new(x,y,z)
  1958.     localplr.Character.HumanoidRootPart.CFrame = cord
  1959. end)
  1960. createbutton("Teleport Back", henlighten).MouseButton1Click:Connect(function()
  1961.     local spawnpoint = game.Workspace:FindFirstChildWhichIsA("SpawnLocation")
  1962.     localplr.Character.HumanoidRootPart.CFrame = spawnpoint.CFrame + Vector3.new(0,5,0)
  1963. end)
  1964. createbutton("Drop Holding Tool To Stash", henlighten).MouseButton1Click:Connect(function()
  1965.     local cord = CFrame.new(x,y,z)
  1966.     localplr.Character.HumanoidRootPart.CFrame = cord
  1967.     local char = localplr.Character or localplr.CharacterAdded:Wait()
  1968.     local tool = char:FindFirstChildWhichIsA("Tool")
  1969.     if tool then
  1970.         tool.Parent = workspace
  1971.     end
  1972. end)
  1973. createbutton("Drop All Tools To Stash", henlighten).MouseButton1Click:Connect(function()
  1974.     local cord = CFrame.new(x,y,z)
  1975.     localplr.Character.HumanoidRootPart.CFrame = cord
  1976.     for i,v in pairs(localplr.Backpack:GetChildren()) do
  1977.         if v:IsA("Tool") then
  1978.             v.Parent = localplr.Character
  1979.         end
  1980.     end
  1981.     wait()
  1982.     for i,v in pairs(localplr.Character:GetChildren()) do
  1983.         if v:IsA("Tool") then
  1984.         end
  1985.     end
  1986. end)
  1987. createbutton("Get 100 Enlighten", henlighten).MouseButton1Click:Connect(function()
  1988.     chat(";enlighten me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me")
  1989. end)
  1990. createbutton("Get 1 Enlighten and drop it", henlighten).MouseButton1Click:Connect(function()
  1991.     local cord = CFrame.new(x,y,z)
  1992.     localplr.Character.HumanoidRootPart.CFrame = cord + Vector3.new(0,4,0)
  1993.     chat(";enlighten me")
  1994.     wait(.8)
  1995.     chat(";disarm")
  1996. end)
  1997. createinfo("Stashers",henlighten)
  1998. createbutton("Pick Up 1 Enlighten from stash", henlighten).MouseButton1Click:Connect(function()
  1999.     local humanoid = char:FindFirstChildOfClass("Humanoid")
  2000.     local tool = workspace:FindFirstChild("The Arkenstone")
  2001.     if tool and humanoid then
  2002.         if tool.Handle and tool.Handle:FindFirstChild("TouchInterest") then
  2003.             humanoid:EquipTool(tool)
  2004.         end
  2005.     end
  2006. end)
  2007. createbutton("Fill Stash", henlighten).MouseButton1Click:Connect(function()
  2008.     notify("Filling Stash...")
  2009.     chat(";r6")
  2010.     x, y, z = crds.Text:match("(%d+),%s*(%d+),%s*(%d+)")
  2011.     task.wait(3)
  2012.     local cord = CFrame.new(x,y,z)
  2013.     localplr.Character.HumanoidRootPart.CFrame = cord
  2014.     chat(";enlighten me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me")
  2015.     task.wait(2)
  2016.     for i,v in pairs(localplr.Backpack:GetChildren()) do
  2017.         if v:IsA("Tool") then
  2018.             if v.Name == "The Arkenstone" then
  2019.                 v.Parent = localplr.Character
  2020.             end
  2021.         end
  2022.     end
  2023.     wait()
  2024.     for i,v in pairs(localplr.Character:GetChildren()) do
  2025.         if v:IsA("Tool") then
  2026.             v.Parent = workspace
  2027.         end
  2028.     end
  2029. end)
  2030. delstashnotif = createtoggle("Notify when stash was deleted.",henlighten)
  2031. local dsn = delstashnotif:FindFirstChild("Toggle")
  2032. debugnotif = createtoggle("Notify when debug", henlighten)
  2033. local dn = debugnotif:FindFirstChild("Toggle")
  2034. createinfo("Auto Features Are Buggy+Unstable!", henlighten)
  2035. fill = createtoggle("Auto Fill Stash On Debug", henlighten)
  2036. local fillvar = fill:FindFirstChild("Toggle")
  2037. build = createtoggle("Auto Build On Delcubes + Fill", henlighten)
  2038. local buildvar = build:FindFirstChild("Toggle")
  2039. pickup = createtoggle("Auto Pick Up Enlighten On Clearinv",henlighten)
  2040. local pickvar = pickup:FindFirstChild("Toggle")
  2041. local function containsIgnoreCase(str, pattern)
  2042.     return string.find(string.lower(str), string.lower(pattern)) ~= nil
  2043. end
  2044. local function get()
  2045.     local back = localplr:FindFirstChild("Backpack")
  2046.     if back then
  2047.         if pickvar.Value == false then
  2048.             if not back:FindFirstChild("The Arkenstone") then
  2049.                 local enl = localplr.Backpack:FindFirstChild("The Arkenstone")
  2050.                 if not enl then
  2051.                     local humanoid = char:FindFirstChildOfClass("Humanoid")
  2052.                     local tool = workspace:FindFirstChild("The Arkenstone")
  2053.                     if tool and humanoid then
  2054.                         if tool.Handle and tool.Handle:FindFirstChild("TouchInterest") then
  2055.                             humanoid:EquipTool(tool)
  2056.                         end
  2057.                     end
  2058.                 end
  2059.             end
  2060.         end
  2061.     end
  2062. end
  2063. localplr.CharacterAdded:Connect(function()
  2064.     if neon:FindFirstChild("Toggle").Value == false then
  2065.         localplr.Character:WaitForChild("Neon").Enabled = false
  2066.     end
  2067.     local back = localplr:FindFirstChild("Backpack")
  2068.     if back then
  2069.         back.ChildRemoved:Connect(function(tool)
  2070.             get()
  2071.         end)
  2072.         get()
  2073.     end
  2074. end)
  2075. local Players = game:GetService("Players")
  2076. local localPlayer = Players.LocalPlayer
  2077.  
  2078. -- Function to handle ChildRemoved event
  2079. local function onChildRemoved(tool)
  2080.     get()
  2081. end
  2082.  
  2083. -- Function to set up the ChildRemoved connection
  2084. local function setupBackpackListener()
  2085.     local backpack = localPlayer:WaitForChild("Backpack", 10) -- Wait for the Backpack instance
  2086.     if backpack then
  2087.         backpack.ChildRemoved:Connect(onChildRemoved)
  2088.     else
  2089.         warn("Backpack not found within the expected time")
  2090.     end
  2091. end
  2092.  
  2093. -- Initial setup
  2094. setupBackpackListener()
  2095.  
  2096. -- Listen for character respawn and re-setup the Backpack listener
  2097. localPlayer.CharacterAdded:Connect(function(character)
  2098.     setupBackpackListener()
  2099. end)
  2100.  
  2101. crashprevent = createtoggle("Anti Bkit Crash (Enlighten)", antis)
  2102. local crashpreventvalue = crashprevent:FindFirstChild("Toggle")
  2103. local function handleChat(p, msg)
  2104.     if crashpreventvalue.Value == false then
  2105.         if containsIgnoreCase(msg, "########################################################")
  2106.             or containsIgnoreCase(msg, "kit rest ")
  2107.             or containsIgnoreCase(msg, "kit others ")
  2108.             or containsIgnoreCase(msg, "kit other's ")
  2109.             or containsIgnoreCase(msg, "kit @o ") then
  2110.             if p.Character:FindFirstChild("The Arkenstone") then
  2111.                 chat(";reset " .. p.Name)
  2112.                 notify(p.Name .. " tried to crash the server")
  2113.             end
  2114.         end
  2115.     end
  2116.     if fillvar.Value == false then
  2117.         if containsIgnoreCase(msg, "debug") then
  2118.             notify("Auto Filling Stash...")
  2119.             chat(";r6")
  2120.             x, y, z = crds.Text:match("(%d+),%s*(%d+),%s*(%d+)")
  2121.             task.wait(3)
  2122.             local cord = CFrame.new(x,y,z)
  2123.             localplr.Character.HumanoidRootPart.CFrame = cord
  2124.             chat(";enlighten me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me")
  2125.             task.wait(2)
  2126.             for i,v in pairs(localplr.Backpack:GetChildren()) do
  2127.                 if v:IsA("Tool") then
  2128.                     if v.Name == "The Arkenstone" then
  2129.                         v.Parent = localplr.Character
  2130.                     end
  2131.                 end
  2132.             end
  2133.             wait()
  2134.             for i,v in pairs(localplr.Character:GetChildren()) do
  2135.                 if v:IsA("Tool") then
  2136.                     v.Parent = workspace
  2137.                 end
  2138.             end
  2139.         end
  2140.     end
  2141.     if buildvar.Value == false then
  2142.         if containsIgnoreCase(msg,"delcubes ") then
  2143.             if #game.Workspace.Cubes:FindFirstChild(localplr.Name):GetChildren() == 0 then
  2144.                 notify("Auto Building stash...")
  2145.                 chat(";bkit me")
  2146.                 task.wait(.1)
  2147.                 createstash()
  2148.                 wait(25)
  2149.                 notify("Auto Filling Stash...")
  2150.                 chat(";r6")
  2151.                 x, y, z = crds.Text:match("(%d+),%s*(%d+),%s*(%d+)")
  2152.                 task.wait(3)
  2153.                 local cord = CFrame.new(x,y,z)
  2154.                 localplr.Character.HumanoidRootPart.CFrame = cord
  2155.                 chat(";enlighten me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me")
  2156.                 task.wait(2)
  2157.                 for i,v in pairs(localplr.Backpack:GetChildren()) do
  2158.                     if v:IsA("Tool") then
  2159.                         if v.Name == "The Arkenstone" then
  2160.                             v.Parent = localplr.Character
  2161.                         end
  2162.                     end
  2163.                 end
  2164.                 wait()
  2165.                 for i,v in pairs(localplr.Character:GetChildren()) do
  2166.                     if v:IsA("Tool") then
  2167.                         v.Parent = workspace
  2168.                     end
  2169.                 end
  2170.             end
  2171.         end
  2172.     end
  2173.     if aac.Value == false then
  2174.         if containsIgnoreCase(msg, "########################################################")
  2175.             or containsIgnoreCase(msg, "kit rest ")
  2176.             or containsIgnoreCase(msg, "kit others ")
  2177.             or containsIgnoreCase(msg, "kit other's ")
  2178.             or containsIgnoreCase(msg, "kit @o ") then
  2179.             anticrash()
  2180.            
  2181.         end
  2182.     end
  2183.     if dsn.Value == false then
  2184.         if containsIgnoreCase(msg,"delcubes ") then
  2185.             if #game.Workspace.Cubes:FindFirstChild(localplr.Name):GetChildren() == 0 then
  2186.                 notify("Stash was deleted!\n By "..p.Name)
  2187.             end
  2188.         end
  2189.     end
  2190.     if dn.Value == false then
  2191.         if containsIgnoreCase(msg, "debug") then
  2192.             notify("Debug.\n"..p.Name.." Did debug")
  2193.         end
  2194.     end
  2195. end
  2196.  
  2197. local function connectPlayerChat(p)
  2198.     p.Chatted:Connect(function(msg)
  2199.         handleChat(p, msg)
  2200.     end)
  2201. end
  2202. for _, p in ipairs(game.Players:GetPlayers()) do
  2203.     if p.Name ~= localplr.Name then
  2204.         connectPlayerChat(p)
  2205.     end
  2206. end
  2207. game.Players.PlayerAdded:Connect(function(p)
  2208.     if p.Name ~= localplr.Name then
  2209.         connectPlayerChat(p)
  2210.     end
  2211. end)
  2212. createbutton("Camera INF Distance Zoom", extras).MouseButton1Click:Connect(function()
  2213.     localplr.CameraMaxZoomDistance = 100000
  2214. end)
  2215. invis = createtoggle("Invisible (Underground)",extras)
  2216. invis.MouseButton1Click:Connect(function()
  2217.     local var = invis:FindFirstChild("Toggle")
  2218.     if var.Value == true then
  2219.         for _, i in ipairs(game.Workspace.Trrain:GetChildren()) do
  2220.             if i.Name == "Chunk" then
  2221.                 for _, v in ipairs(i:GetChildren()) do
  2222.                     v.Transparency = 1
  2223.                     v.CanCollide = false
  2224.                 end
  2225.             end
  2226.         end
  2227.     else
  2228.         for _, i in ipairs(game.Workspace.Trrain:GetChildren()) do
  2229.             if i.Name == "Chunk" then
  2230.                 for _, v in ipairs(i:GetChildren()) do
  2231.                     v.Transparency = 0
  2232.                     v.CanCollide = true
  2233.                 end
  2234.             end
  2235.         end
  2236.         localplr.Character.HumanoidRootPart.CFrame = localplr.Character.HumanoidRootPart.CFrame + Vector3.new(0,50,0)
  2237.     end
  2238. end)
  2239. fe = createsection("Scripts")
  2240. createbutton("Execute IY", fe, false).MouseButton1Click:Connect(function()
  2241.     if hasFunction("HttpGet") then
  2242.         loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() 
  2243.     else
  2244.         notify("Sorry, No HTTPGET Support! Try _G.IY() if youre on cheat engine.")
  2245.     end
  2246. end)
  2247. createbutton("Execute Spy", fe, false).MouseButton1Click:Connect(function()
  2248.     local Config = {
  2249.         enabled = true,
  2250.         spyOnMyself = false,
  2251.         public = false,
  2252.         publicItalics = true
  2253.     }
  2254.  
  2255.     local PrivateProperties = {
  2256.         Color = Color3.fromRGB(0,255,255);
  2257.         Font = Enum.Font.SourceSansBold;
  2258.         TextSize = 18;
  2259.     }
  2260.  
  2261.     local StarterGui = game:GetService("StarterGui")
  2262.     local Players = game:GetService("Players")
  2263.     local player = Players.LocalPlayer
  2264.     local saymsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest")
  2265.     local getmsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("OnMessageDoneFiltering")
  2266.     local instance = (_G.chatSpyInstance or 0) + 1
  2267.     _G.chatSpyInstance = instance
  2268.  
  2269.     local function onChatted(p,msg)
  2270.         if _G.chatSpyInstance == instance then
  2271.             if p==player and msg:lower():sub(1,4)=="/spy" then
  2272.                 Config.enabled = not Config.enabled
  2273.                 wait(0.3)
  2274.                 PrivateProperties.Text = "{SPY "..(Config.enabled and "EN" or "DIS").."ABLED}"
  2275.                 StarterGui:SetCore("ChatMakeSystemMessage", PrivateProperties)
  2276.             elseif Config.enabled and (Config.spyOnMyself==true or p~=player) then
  2277.                 msg = msg:gsub("[\n\r]",''):gsub("\t",' '):gsub("[ ]+",' ')
  2278.                 local hidden = true
  2279.                 local conn = getmsg.OnClientEvent:Connect(function(packet,channel)
  2280.                     if packet.localplrUserId==p.UserId and packet.Message==msg:sub(#msg-#packet.Message+1) and (channel=="All" or (channel=="Team" and Config.public==false and Players[packet.Fromlocalplr].Team==player.Team)) then
  2281.                         hidden = false
  2282.                     end
  2283.                 end)
  2284.                 wait(1)
  2285.                 conn:Disconnect()
  2286.                 if hidden and Config.enabled then
  2287.                     if Config.public then
  2288.                         saymsg:FireServer((Config.publicItalics and "/me " or '').."{SPY} [".. p.Name .."]: "..msg,"All")
  2289.                     else
  2290.                         PrivateProperties.Text = "{SPY} [".. p.Name .."]: "..msg
  2291.                         StarterGui:SetCore("ChatMakeSystemMessage", PrivateProperties)
  2292.                     end
  2293.                 end
  2294.             end
  2295.         end
  2296.     end
  2297.  
  2298.     for _,p in ipairs(Players:GetPlayers()) do
  2299.         p.Chatted:Connect(function(msg) onChatted(p,msg) end)
  2300.     end
  2301.  
  2302.     Players.PlayerAdded:Connect(function(p)
  2303.         p.Chatted:Connect(function(msg) onChatted(p,msg) end)
  2304.     end)
  2305.  
  2306.     PrivateProperties.Text = "{SPY "..(Config.enabled and "EN" or "DIS").."ABLED}"
  2307.     StarterGui:SetCore("ChatMakeSystemMessage", PrivateProperties)
  2308.     local chatFrame = player.PlayerGui.Chat.Frame
  2309.     chatFrame.ChatChannelParentFrame.Visible = true
  2310.     chatFrame.ChatBarParentFrame.Position = chatFrame.ChatChannelParentFrame.Position+UDim2.new(UDim.new(),chatFrame.ChatChannelParentFrame.Size.Y)
  2311. end)
  2312. local AntiFling = false
  2313. local flinging
  2314. createbutton("Touch Fling (Toggle)", fe).MouseButton1Click:Connect(function()
  2315.     if not localplr.Character then
  2316.         return notify("You don't have a character.")
  2317.     end
  2318.     local rootPart = localplr.Character:FindFirstChild("HumanoidRootPart")
  2319.     if not rootPart then
  2320.         return notify("You don't have a root part.")
  2321.     end
  2322.     local dir = 0.1
  2323.     if flinging then
  2324.         flinging = false
  2325.     else
  2326.         notify("Touch Fling enabled")
  2327.         flinging = true
  2328.         local should = true
  2329.         if AntiFling == false then
  2330.             should = true
  2331.             AntiFling = true
  2332.         end
  2333.         while flinging and rootPart and rootPart.Parent and rootPart.Parent.Parent do
  2334.             rs.Heartbeat:Wait()
  2335.             local velocity = rootPart.Velocity
  2336.             rootPart.Velocity = ((velocity * 10000) + Vector3.new(0, 10000, 0))
  2337.             rs.RenderStepped:Wait()
  2338.             rootPart.Velocity = velocity
  2339.             rs.RenderStepped:Wait()
  2340.             rootPart.Velocity = velocity + Vector3.new(0, dir, 0)
  2341.             dir *= -1
  2342.         end
  2343.         notify("Touch Fling disabled")
  2344.         flinging = false
  2345.         if should == true then
  2346.             AntiFling = false
  2347.         end
  2348.     end
  2349.    
  2350. end)
  2351. createbutton("Telekinesis", fe).MouseButton1Click:Connect(function()
  2352.     if hasFunction("HttpGet") then
  2353.         loadstring(game:HttpGetAsync("https://pastebin.com/raw/KbEZjNXm"))()
  2354.     else
  2355.         notify("no httpget support D:")
  2356.     end
  2357. end)
  2358. createbutton("Anti Exploiters Fling (Toggle)", fe).MouseButton1Click:Connect(function()
  2359.     if AntiFling == false then
  2360.         notify("Antifling Enabled");
  2361.         AntiFling = true
  2362.         while AntiFling do game:GetService('RunService').Stepped:Wait()
  2363.             for _,player in pairs(game:GetService('Players'):GetPlayers()) do
  2364.                 if player~=game.Players.LocalPlayer then
  2365.                     pcall(function()
  2366.                         for _,descendant in pairs(player.Character:GetDescendants()) do
  2367.                             pcall(function()
  2368.                                 if descendant:IsA('BasePart') and descendant.CanCollide then
  2369.                                     descendant.CanCollide = false
  2370.                                 end
  2371.                             end)
  2372.                         end
  2373.                     end)
  2374.                 end
  2375.             end
  2376.         end
  2377.     else
  2378.         AntiFling = false
  2379.         notify("AntiFling Disabled")
  2380.         for _,player in pairs(game:GetService('Players'):GetPlayers()) do
  2381.             for _,descendant in player.Character:GetDescendants() do
  2382.                 if descendant:IsA('BasePart') and not descendant.CanCollide then
  2383.                     descendant.CanCollide = true
  2384.                 end
  2385.             end
  2386.         end
  2387.     end
  2388. end)
  2389. local grabtoolsFunc
  2390. grabtools = createtoggle("GrabTools", fe)
  2391. local gb = grabtools:FindFirstChild("Toggle")
  2392. grabtools.MouseButton1Click:Connect(function()
  2393.     if gb.Value == true then
  2394.         local humanoid = localplr.Character:FindFirstChildWhichIsA("Humanoid")
  2395.         for _, child in ipairs(workspace:GetChildren()) do
  2396.             if localplr.Character and child:IsA("BackpackItem") and child:FindFirstChild("Handle") then
  2397.                 humanoid:EquipTool(child)
  2398.             end
  2399.         end
  2400.  
  2401.         if grabtoolsFunc then
  2402.             grabtoolsFunc:Disconnect()
  2403.         end
  2404.  
  2405.         grabtoolsFunc = workspace.ChildAdded:Connect(function(child)
  2406.             if localplr.Character and child:IsA("BackpackItem") and child:FindFirstChild("Handle") then
  2407.                 humanoid:EquipTool(child)
  2408.             end
  2409.         end)
  2410.         notify("Turned on")
  2411.     else
  2412.         if grabtoolsFunc then
  2413.             notify("Turned off")
  2414.             grabtoolsFunc:Disconnect()
  2415.         end
  2416.     end
  2417. end)
  2418. createbutton("TP Tool",fe).MouseButton1Click:Connect(function()
  2419.     local a=game:service'Players'.LocalPlayer
  2420.     local b=Instance.new('Tool',a.Backpack)
  2421.     local g=game:service'TweenService'
  2422.     b.RequiresHandle=false
  2423.     b.Name='Tp'
  2424.  
  2425.     b.Activated:Connect(function()
  2426.         a.Character.HumanoidRootPart.CFrame = CFrame.new(a:GetMouse().Hit.Position+Vector3.new(0,5,0))
  2427.     end)
  2428. end)
  2429. local function refresh()
  2430.     local Char = localplr.Character or localplr.CharacterAdded:Wait()
  2431.     local Human = Char and Char:WaitForChild('Humanoid', 15)
  2432.     local Animate = Char and Char:WaitForChild('Animate', 15)
  2433.     if not Human or not Animate then
  2434.         return notify('Refresh Animations', 'Failed to get Animate/Humanoid')
  2435.     end
  2436.     Animate.Disabled = true
  2437.     for _, v in ipairs(Human:GetPlayingAnimationTracks()) do
  2438.         v:Stop()
  2439.     end
  2440.     Animate.Disabled = false
  2441. end
  2442. local function getRoot(char)
  2443.     local rootPart = char:FindFirstChild('HumanoidRootPart') or char:FindFirstChild('Torso') or char:FindFirstChild('UpperTorso')
  2444.     return rootPart
  2445. end
  2446. local hitmode
  2447. local hitclick
  2448. createbutton("Hit Mode (Toggle)",fe).MouseButton1Click:Connect(function()
  2449.     for _, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  2450.         if v:IsA('Tool') or v:IsA('HopperBin') then
  2451.             v.Animation.AnimationId = " "
  2452.         end
  2453.     end
  2454.  
  2455.     if not hitmode then
  2456.         hitmode = true
  2457.         notify("Hitmode: On")
  2458.  
  2459.         local play = false
  2460.         local hitAnim = Instance.new("Animation")
  2461.         local Player = game.Players.LocalPlayer
  2462.         local Mouse = Player:GetMouse()
  2463.         hitclick = Mouse.Button1Down:Connect(function()
  2464.             local randomanim
  2465.             if not play then
  2466.                 play = true
  2467.                 for i, track in pairs (game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
  2468.                     track:Stop()
  2469.                     game.Players.LocalPlayer.Character.Animate.Disabled = true
  2470.                 end
  2471.                 if localplr.Character:FindFirstChildOfClass('Humanoid').Jump == true then
  2472.                     randomanim = math.random(12, 13)
  2473.                 else
  2474.                     randomanim = math.random(1, 13)
  2475.                 end
  2476.                 if randomanim == 1 then
  2477.                     hitAnim.AnimationId = "rbxassetid://3334832150"
  2478.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2479.                     hit:Play(.1, 1, 1)
  2480.                     hit.TimePosition = 0.4
  2481.                     wait(.5)
  2482.                     hit:AdjustSpeed(0)
  2483.                     wait(.2)
  2484.                     play = false
  2485.                     refresh()
  2486.                 elseif randomanim == 2 then
  2487.                     hitAnim.AnimationId = "rbxassetid://3334832150"
  2488.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2489.                     hit:Play(.1, 1, 1)
  2490.                     hit.TimePosition = 1
  2491.                     hit:AdjustSpeed(0.1)
  2492.                     wait(.3)
  2493.                     play = false
  2494.                     refresh()
  2495.                 elseif randomanim == 3 then
  2496.                     hitAnim.AnimationId = "rbxassetid://3334968680"
  2497.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2498.                     hit:Play(.1, 1, 1)
  2499.                     hit.TimePosition = 1.2
  2500.                     wait(.4)
  2501.                     hit:AdjustSpeed(0)
  2502.                     wait(.2)
  2503.                     play = false
  2504.                     refresh()
  2505.                 elseif randomanim == 4 then
  2506.                     hitAnim.AnimationId = "rbxassetid://3236842542"
  2507.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2508.                     hit:Play(.1, 1, 1)
  2509.                     hit.TimePosition = 3.1
  2510.                     wait(.6)
  2511.                     hit:AdjustSpeed(0)
  2512.                     wait(.2)
  2513.                     play = false
  2514.                     refresh()
  2515.                 elseif randomanim == 5 then
  2516.                     hitAnim.AnimationId = "rbxassetid://7202863182"
  2517.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2518.                     hit:Play(.1, 1, 1)
  2519.                     hit.TimePosition = 5.1
  2520.                     wait(.3)
  2521.                     hit:AdjustSpeed(0)
  2522.                     wait(.2)
  2523.                     play = false
  2524.                     refresh()
  2525.                 elseif randomanim == 6 then
  2526.                     hitAnim.AnimationId = "rbxassetid://7202863182"
  2527.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2528.                     hit:Play(.1, 1, 1)
  2529.                     hit.TimePosition = 5.38
  2530.                     wait(.7)
  2531.                     hit:AdjustSpeed(0)
  2532.                     wait(.2)
  2533.                     play = false
  2534.                     refresh()
  2535.                 elseif randomanim == 7 then
  2536.                     hitAnim.AnimationId = "rbxassetid://4841403964"
  2537.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2538.                     hit:Play(.1, 1, 1)
  2539.                     hit.TimePosition = 1.2
  2540.                     wait(.9)
  2541.                     hit:AdjustSpeed(0)
  2542.                     wait(.2)
  2543.                     play = false
  2544.                     refresh()
  2545.                 elseif randomanim == 8 then
  2546.                     hitAnim.AnimationId = "rbxassetid://3695300085"
  2547.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2548.                     hit:Play(.1, 1, 1)
  2549.                     hit.TimePosition = 1.3
  2550.                     wait(.5)
  2551.                     hit:AdjustSpeed(0)
  2552.                     wait(.2)
  2553.                     play = false
  2554.                     refresh()
  2555.                 elseif randomanim == 9 then
  2556.                     hitAnim.AnimationId = "rbxassetid://3337966527"
  2557.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2558.                     hit:Play(.1, 1, -1)
  2559.                     hit.TimePosition = .7
  2560.                     wait(.9)
  2561.                     play = false
  2562.                     refresh()
  2563.                 elseif randomanim == 10 then
  2564.                     hitAnim.AnimationId = "rbxassetid://3334832150"
  2565.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2566.                     hit:Play(.1, 1, -1)
  2567.                     hit.TimePosition = 3.8
  2568.                     wait(1)
  2569.                     hit:AdjustSpeed(0)
  2570.                     wait(.2)
  2571.                     play = false
  2572.                     refresh()
  2573.                 elseif randomanim == 11 then
  2574.                     hitAnim.AnimationId = "rbxassetid://3334968680"
  2575.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2576.                     hit:Play(.1, 1, -1)
  2577.                     hit.TimePosition = 1.6
  2578.                     wait(.5)
  2579.                     hit:AdjustSpeed(0)
  2580.                     wait(.2)
  2581.                     play = false
  2582.                     refresh()
  2583.                 elseif randomanim == 12 then
  2584.                     hitAnim.AnimationId = "rbxassetid://5104344710"
  2585.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2586.                     hit:Play(.1, 1, 1)
  2587.                     hit.TimePosition = .5
  2588.                     for i = 1, 15 do
  2589.                         getRoot(localplr.Character).CFrame = getRoot(localplr.Character).CFrame * CFrame.new(0,0,-0.1)  * CFrame.Angles(0,math.rad(0),0)
  2590.                         wait()
  2591.                     end
  2592.                     wait(.2)
  2593.                     play = false
  2594.                     refresh()
  2595.                 elseif randomanim == 13 then
  2596.                     hitAnim = Instance.new("Animation")
  2597.                     for i, track in pairs (game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
  2598.                         track:Stop()
  2599.                         game.Players.LocalPlayer.Character.Animate.Disabled = true
  2600.                     end
  2601.                     hitAnim.AnimationId = "rbxassetid://5104344710"
  2602.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2603.                     hit:Play(.1, 1, -1)
  2604.                     hit.TimePosition = 1.1
  2605.                     for i = 1, 15 do
  2606.                         getRoot(localplr.Character).CFrame = getRoot(localplr.Character).CFrame * CFrame.new(0,0,-0.2)  * CFrame.Angles(0,math.rad(0),0)
  2607.                         wait()
  2608.                     end
  2609.                     wait(.7)
  2610.                     play = false
  2611.                     refresh()
  2612.  
  2613.                 end
  2614.             end
  2615.         end)
  2616.     else
  2617.         hitclick:Disconnect()
  2618.         hitmode = false
  2619.         notify("Hitmode: Off")
  2620.     end
  2621. end)
  2622. local hitmode
  2623. local hitclick
  2624. local play
  2625. createbutton("Punch Mode (Toggle)",fe).MouseButton1Click:Connect(function()
  2626.     if not hitmode then
  2627.         hitmode = true
  2628.         notify("Punchmode: On")
  2629.         local hitAnim = Instance.new("Animation")
  2630.         local Player = game.Players.LocalPlayer
  2631.         local Mouse = Player:GetMouse()
  2632.         hitclick = Mouse.Button1Down:Connect(function()
  2633.             if not play then
  2634.                 play = true
  2635.  
  2636.                 for i, track in pairs (game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
  2637.                     track:Stop()
  2638.                     game.Players.LocalPlayer.Character.Animate.Disabled = true
  2639.                 end
  2640.                 local randomanim = math.random(1, 2)
  2641.                 if randomanim == 1 then
  2642.                     hitAnim.AnimationId = "rbxassetid://7202863182"
  2643.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2644.                     hit:Play(.1, 1, 1)
  2645.                     hit.TimePosition = 5.38
  2646.                     wait(.7)
  2647.                     hit:AdjustSpeed(0)
  2648.                     wait(.2)
  2649.                     play = false
  2650.                     refresh()
  2651.                 elseif randomanim == 2 then
  2652.                     hitAnim.AnimationId = "rbxassetid://7202863182"
  2653.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2654.                     hit:Play(.1, 1, 1)
  2655.                     hit.TimePosition = 5.1
  2656.                     wait(.3)
  2657.                     hit:AdjustSpeed(0)
  2658.                     wait(.2)
  2659.                     play = false
  2660.                     refresh()
  2661.                 elseif randomanim == 3 then
  2662.                     hitAnim.AnimationId = "rbxassetid://4841403964"
  2663.                     local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
  2664.                     hit:Play(.1, 1, 1)
  2665.                     hit.TimePosition = 1.2
  2666.                     wait(.7)
  2667.                     hit:AdjustSpeed(0)
  2668.                     wait(.2)
  2669.                     play = false
  2670.                     refresh()
  2671.                 end
  2672.             end
  2673.         end)
  2674.  
  2675.     else
  2676.         hitclick:Disconnect()
  2677.         hitmode = false
  2678.         notify("Punchmode: Off")
  2679.     end
  2680. end)
  2681. createbutton("Refresh Animations", fe).MouseButton1Click:Connect(function()
  2682.     refresh()
  2683. end)
  2684. emote = createsection("Emotes")
  2685. local emotes = {
  2686.     ["Around Town"] = 3303391864,
  2687.     ["Top Rock"] = 3361276673,
  2688.     ["Fashionable"] = 3333331310,
  2689.     ["Robot"] = 3338025566,
  2690.     ["Twirl"] = 3334968680,
  2691.     ["Jacks"] = 3338066331,
  2692.     ["T"] = 3338010159,
  2693.     ["Shy"] = 3337978742,
  2694.     ["Monkey"] = 3333499508,
  2695.     ["Borock's Rage"] = 3236842542,
  2696.     ["Ud'zal's Summoning"] = 3303161675,
  2697.     ["Hype Dance"] = 3695333486,
  2698.     ["Godlike"] = 3337994105,
  2699.     ["Swoosh"] = 3361481910,
  2700.     ["Sneaky"] = 3334424322,
  2701.     ["Side to Side"] = 3333136415,
  2702.     ["Greatest"] = 3338042785,
  2703.     ["Louder"] = 3338083565,
  2704.     ["Beckon"] = 5230598276,
  2705.     ["Bored"] = 5230599789,
  2706.     ["Cower"] = 4940563117,
  2707.     ["Tantrum"] = 5104341999,
  2708.     ["Hero Landing"] = 5104344710,
  2709.     ["Confused"] = 4940561610,
  2710.     ["Jumping Wave"] = 4940564896,
  2711.     ["Keeping Time"] = 4555808220,
  2712.     ["Agree"] = 4841397952,
  2713.     ["Power Blast"] = 4841403964,
  2714.     ["Disagree"] = 4841401869,
  2715.     ["Sleep"] = 4686925579,
  2716.     ["Sad"] = 4841407203,
  2717.     ["Happy"] = 4841405708,
  2718.     ["Chicken Dance"] = 4841399916,
  2719.     ["Bunny Hop"] = 4641985101,
  2720.     ["Air Dance"] = 4555782893,
  2721.     ["Curtsy"] = 4555816777,
  2722.     ["Zombie"] = 4210116953,
  2723.     ["Fast Hands"] = 4265701731,
  2724.     ["Baby Dance"] = 4265725525,
  2725.     ["Celebrate"] = 3338097973,
  2726.     ["Fancy Feet"] = 3333432454,
  2727.     ["Y"] = 4349285876,
  2728.     ["Shuffle"] = 4349242221,
  2729.     ["Bodybuilder"] = 3333387824,
  2730.     ["Sandwich Dance"] = 4406555273,
  2731.     ["Dorky Dance"] = 4212455378,
  2732.     ["Heisman Pose"] = 3695263073,
  2733.     ["Superhero Reveal"] = 3695373233,
  2734.     ["Dizzy"] = 3361426436,
  2735.     ["Get Out"] = 3333272779,
  2736.     ["Fishing"] = 3334832150,
  2737.     ["Tree"] = 4049551434,
  2738.     ["Line Dance"] = 4049037604,
  2739.     ["Idol"] = 4101966434,
  2740.     ["Haha"] = 3337966527,
  2741.     ["Salute"] = 3333474484,
  2742.     ["Hello"] = 3344650532,
  2743.     ["Air Guitar"] = 3695300085,
  2744.     ["Cha Cha"] = 3695322025,
  2745.     ["Shrug"] = 3334392772,
  2746.     ["Point2"] = 3344585679,
  2747.     ["Tilt"] = 3334538554,
  2748.     ["Stadium"] = 3338055167,
  2749.     ["Dolphin"] = 5918726674,
  2750.     ["Applaud"] = 5915693819,
  2751.     ["Break Dance"] = 5915648917,
  2752.     ["Jumping Cheer"] = 5895324424,
  2753.     ["Floss Dance"] = 5917459365,
  2754.     ["Rock On"] = 5915714366,
  2755.     ["High Wave"] = 5915690960,
  2756.     ["Old Town Road Dance"] = 5937560570,
  2757.     ["Rodeo Dance"] = 5918728267,
  2758.     ["HOLIDAY Dance"] = 5937558680,
  2759.     ["Panini Dance"] = 5915713518,
  2760.     ["Country Line Dance "] = 5915712534,
  2761.     ["hips poppin"] = 6797888062,
  2762.     ["take me under"] = 6797890377,
  2763.     ["it ain't my fault"] = 6797891807,
  2764.     ["rock guitar"] = 6532134724,
  2765.     ["rock star"] = 6533093212,
  2766.     ["drum master"] = 6531483720,
  2767.     ["drum solo"] = 6532839007,
  2768.     ["samba"] = 6869766175,
  2769.     ["block partier"] = 6862022283,
  2770.     ["boxing punch"] = 7202863182,
  2771.     ["show dem wrists"] = 7198989668,
  2772.     ["wake up call"] = 7199000883,
  2773.     ["drummer moves"] = 7422527690,
  2774.     ["on the outside"] = 7422779536,
  2775.     ["dancin shoes"] = 7404878500,
  2776.     ["saturday dance"] = 7422807549,
  2777.     ["up and down"] = 7422797678,
  2778.     ["swan dance"] = 7465997989,
  2779.     ["flowing breeze"] = 7465946930,
  2780.     ["quiet waves"] = 7465981288,
  2781.     ["aok"] = 7942885103,
  2782.     ["cobra arms"] = 7942890105,
  2783.     ["lasso turn"] = 7942896991
  2784. }
  2785. createbutton("Stop Emotes", emote).MouseButton1Click:Connect(function()
  2786.     refresh()
  2787. end)
  2788. for v, i in pairs(emotes) do
  2789.     function PlayAnim(id)
  2790.         refresh()
  2791.         local plr = game.Players.LocalPlayer
  2792.         local hum = plr.Character.Humanoid
  2793.         plr.Character.Animate.Disabled = true
  2794.         local Anim = Instance.new("Animation")
  2795.         Anim.AnimationId = "rbxassetid://"..id
  2796.         local loadanim = hum:LoadAnimation(Anim)
  2797.         loadanim:Play()
  2798.         loadanim:AdjustSpeed(1)
  2799.         loadanim.Stopped:Connect(function()
  2800.             plr.Character.Animate.Disabled = false
  2801.         end)
  2802.     end
  2803.     function StopAnims()
  2804.         game.Players.LocalPlayer.Character.Animate.Disabled = false
  2805.         local animtrack = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2806.         for i, track in pairs (animtrack) do
  2807.             track:Stop()
  2808.         end
  2809.     end
  2810.     createbutton(v,emote).MouseButton1Click:Connect(function()
  2811.         PlayAnim(emotes[v])
  2812.     end)
  2813. end
  2814. animations = createsection("Animations")
  2815. createbutton("Default Animation", animations).MouseButton1Click:Connect(function()
  2816.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2817.     if R15 then
  2818.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://2510196951"
  2819.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://2510197257"
  2820.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://2510202577"
  2821.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://2510198475"
  2822.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://2510197830"
  2823.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://2510192778"
  2824.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://2510195892"
  2825.     else
  2826.         notify('R15 animation pack',"Must be R15")
  2827.     end
  2828. end)
  2829. createbutton("None Animation").MouseButton1Click:Connect(function()
  2830.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2831.     if R15 then
  2832.         local char = localplr.Character
  2833.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://0"
  2834.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://0"
  2835.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://0"
  2836.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://0"
  2837.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://0"
  2838.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://0"
  2839.         char.Animate.swimidle.SwimIdle.AnimationId = "rbxassetid://0"
  2840.         char.Animate.swim.Swim.AnimationId = "rbxassetid://0"
  2841.     else
  2842.         notify('R15 animation pack',"Must be R15")
  2843.     end
  2844. end)
  2845. createbutton("RTHRO Animation", animations).MouseButton1Click:Connect(function()
  2846.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2847.     if R15 then
  2848.         local char = localplr.Character
  2849.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://2510196951"
  2850.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://2510197257"
  2851.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://2510202577"
  2852.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://2510198475"
  2853.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://2510197830"
  2854.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://2510195892"
  2855.         char.Animate.swimidle.SwimIdle.AnimationId = "rbxassetid://02510201162"
  2856.         char.Animate.swim.Swim.AnimationId = "rbxassetid://2510199791"
  2857.         char.Animate.climb.climb.Animationid = "rbxassetid://2510192778"
  2858.     else
  2859.         notify('R15 animation pack',"Must be R15")
  2860.     end
  2861. end)
  2862. createbutton("Austronaut Animation", animations).MouseButton1Click:Connect(function()
  2863.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2864.     if R15 then
  2865.         local char = localplr.Character
  2866.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://891621366"
  2867.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://891633237"
  2868.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://891667138"
  2869.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://891636393"
  2870.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://891627522"
  2871.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://891609353"
  2872.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://891617961"
  2873.     else
  2874.         notify('R15 animation pack',"Must be R15")
  2875.     end
  2876. end)
  2877. createbutton("Bubbly Animation", animations).MouseButton1Click:Connect(function()
  2878.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2879.     if R15 then
  2880.         local char = localplr.Character
  2881.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://910004836"
  2882.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://910009958"
  2883.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://910034870"
  2884.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://910025107"
  2885.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://910016857"
  2886.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://910001910"
  2887.         char.Animate.swimidle.SwimIdle.AnimationId = "rbxassetid://910030921"
  2888.         char.Animate.swim.Swim.AnimationId = "rbxassetid://910028158"
  2889.     else
  2890.         notify('R15 animation pack',"Must be R15")
  2891.     end
  2892. end)
  2893. createbutton("Cartoony Animation", animations).MouseButton1Click:Connect(function()
  2894.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2895.     if R15 then
  2896.         local char = localplr.Character
  2897.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://742637544"
  2898.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://742638445"
  2899.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://742640026"
  2900.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://742638842"
  2901.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://742637942"
  2902.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://742636889"
  2903.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://742637151"
  2904.     else
  2905.         notify('R15 animation pack',"Must be R15")
  2906.     end
  2907. end)
  2908. createbutton("Confident Animation", animations).MouseButton1Click:Connect(function()
  2909.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2910.     if R15 then
  2911.         local char = localplr.Character
  2912.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://1069977950"
  2913.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://1069987858"
  2914.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1070017263"
  2915.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://1070001516"
  2916.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1069984524"
  2917.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1069946257"
  2918.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1069973677"
  2919.     else
  2920.         notify('R15 animation pack',"Must be R15")
  2921.     end
  2922. end)
  2923. createbutton("Cowboy Animation", animations).MouseButton1Click:Connect(function()
  2924.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2925.     if R15 then
  2926.         local char = localplr.Character
  2927.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://1014390418"
  2928.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://1014398616"
  2929.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1014421541"
  2930.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://1014401683"
  2931.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1014394726"
  2932.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1014380606"
  2933.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1014384571"
  2934.     else
  2935.         notify('R15 animation pack',"Must be R15")
  2936.     end
  2937. end)
  2938. createbutton("Elder Animation", animations).MouseButton1Click:Connect(function()
  2939.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2940.     if R15 then
  2941.         local char = localplr.Character
  2942.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://845397899"
  2943.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://845400520"
  2944.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://845403856"
  2945.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://845386501"
  2946.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://845398858"
  2947.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://845392038"
  2948.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://845396048"
  2949.     else
  2950.         notify('R15 animation pack',"Must be R15")
  2951.     end
  2952. end)
  2953. createbutton("Ghost Animation", animations).MouseButton1Click:Connect(function()
  2954.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2955.     if R15 then
  2956.         local char = localplr.Character
  2957.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://616006778"
  2958.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://616008087"
  2959.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616013216"
  2960.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://616013216"
  2961.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616008936"
  2962.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616005863"
  2963.         char.Animate.swimidle.SwimIdle.AnimationId = "rbxassetid://616012453"
  2964.         char.Animate.swim.Swim.AnimationId = "rbxassetid://616011509"
  2965.     else
  2966.         notify('R15 animation pack',"Must be R15")
  2967.     end
  2968. end)
  2969. createbutton("Knight Animations", animations).MouseButton1Click:Connect(function()
  2970.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2971.     if R15 then
  2972.         local char = localplr.Character
  2973.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://657595757"
  2974.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://657568135"
  2975.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://657552124"
  2976.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://657564596"
  2977.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://658409194"
  2978.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://658360781"
  2979.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://657600338"
  2980.     else
  2981.         notify('R15 animation pack',"Must be R15")
  2982.     end
  2983. end)
  2984. createbutton("Levitation Animation", animations).MouseButton1Click:Connect(function()
  2985.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  2986.     if R15 then
  2987.         local char = localplr.Character
  2988.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://616006778"
  2989.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://616008087"
  2990.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616013216"
  2991.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://616010382"
  2992.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616008936"
  2993.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://616003713"
  2994.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616005863"
  2995.     else
  2996.         notify('R15 animation pack',"Must be R15")
  2997.     end
  2998. end)
  2999. createbutton("Mage Animation", animations).MouseButton1Click:Connect(function()
  3000.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3001.     if R15 then
  3002.         local char = localplr.Character
  3003.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://707742142"
  3004.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://707855907"
  3005.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://707897309"
  3006.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://707861613"
  3007.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://707853694"
  3008.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://707826056"
  3009.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://707829716"
  3010.     else
  3011.         notify('R15 animation pack',"Must be R15")
  3012.     end
  3013. end)
  3014. createbutton("Ninja Animation", animations).MouseButton1Click:Connect(function()
  3015.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3016.     if R15 then
  3017.         local char = localplr.Character
  3018.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://656117400"
  3019.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://656118341"
  3020.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://656121766"
  3021.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://656118852"
  3022.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://656117878"
  3023.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://656114359"
  3024.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://656115606"
  3025.     else
  3026.         notify('R15 animation pack',"Must be R15")
  3027.     end
  3028. end)
  3029. createbutton("Old School Animation", animations).MouseButton1Click:Connect(function()
  3030.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3031.     if R15 then
  3032.         local char = localplr.Character
  3033.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://5319828216"
  3034.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://5319831086"
  3035.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://5319847204"
  3036.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://5319844329"
  3037.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://5319841935"
  3038.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://5319839762"
  3039.         char.Animate.swimidle.SwimIdle.AnimationId = "rbxassetid://5319852613"
  3040.         char.Animate.swim.Swim.AnimationId = "rbxassetid://5319850266"
  3041.     else
  3042.         notify('R15 animation pack',"Must be R15")
  3043.     end
  3044. end)
  3045. createbutton("Patrol Animation", animations).MouseButton1Click:Connect(function()
  3046.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3047.     if R15 then
  3048.         local char = localplr.Character
  3049.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://1149612882"
  3050.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://1150842221"
  3051.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1151231493"
  3052.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://1150967949"
  3053.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1148811837"
  3054.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1148811837"
  3055.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1148863382"
  3056.     else
  3057.         notify('R15 animation pack',"Must be R15")
  3058.     end
  3059. end)
  3060. createbutton("Pirate Animation", animations).MouseButton1Click:Connect(function()
  3061.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3062.     if R15 then
  3063.         local char = localplr.Character
  3064.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://750781874"
  3065.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://750782770"
  3066.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://750785693"
  3067.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://750783738"
  3068.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://750782230"
  3069.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://750779899"
  3070.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://750780242"
  3071.     else
  3072.         notify('R15 animation pack',"Must be R15")
  3073.     end
  3074. end)
  3075. createbutton("Pop Star Animation", animations).MouseButton1Click:Connect(function()
  3076.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3077.     if R15 then
  3078.         local char = localplr.Character
  3079.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://1212900985"
  3080.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://1150842221"
  3081.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1212980338"
  3082.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://1212980348"
  3083.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1212954642"
  3084.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1213044953"
  3085.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1212900995"
  3086.     else
  3087.         notify('R15 animation pack',"Must be R15")
  3088.     end
  3089. end)
  3090. createbutton("Princess Animation", animations).MouseButton1Click:Connect(function()
  3091.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3092.     if R15 then
  3093.         local char = localplr.Character
  3094.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://941003647"
  3095.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://941013098"
  3096.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://941028902"
  3097.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://941015281"
  3098.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://941008832"
  3099.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://940996062"
  3100.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://941000007"
  3101.     else
  3102.         notify('R15 animation pack',"Must be R15")
  3103.     end
  3104. end)
  3105. createbutton("Robot Animation", animations).MouseButton1Click:Connect(function()
  3106.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3107.     if R15 then
  3108.         local char = localplr.Character
  3109.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://616088211"
  3110.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://616089559"
  3111.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616095330"
  3112.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://616091570"
  3113.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616090535"
  3114.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://616086039"
  3115.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616087089"
  3116.     else
  3117.         notify('R15 animation pack',"Must be R15")
  3118.     end
  3119. end)
  3120. createbutton("Sneaky Animation",animations).MouseButton1Click:Connect(function()
  3121.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3122.     if R15 then
  3123.         local char = localplr.Character
  3124.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://1132473842"
  3125.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://1132477671"
  3126.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1132510133"
  3127.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://1132494274"
  3128.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1132489853"
  3129.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1132461372"
  3130.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1132469004"
  3131.     else
  3132.         notify('R15 animation pack',"Must be R15")
  3133.     end
  3134. end)
  3135. createbutton("Stylish Animation",animations).MouseButton1Click:Connect(function()
  3136.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3137.     if R15 then
  3138.         local char = localplr.Character
  3139.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://616136790"
  3140.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://616138447"
  3141.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616146177"
  3142.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://616140816"
  3143.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616139451"
  3144.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://616133594"
  3145.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616134815"
  3146.     else
  3147.         notify('R15 animation pack',"Must be R15")
  3148.     end
  3149. end)
  3150. createbutton("Superhero Animation",animations).MouseButton1Click:Connect(function()
  3151.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3152.     if R15 then
  3153.         local char = localplr.Character
  3154.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://616111295"
  3155.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://616113536"
  3156.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616122287"
  3157.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://616117076"
  3158.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616115533"
  3159.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://616104706"
  3160.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616108001"
  3161.     else
  3162.         notify('R15 animation pack',"Must be R15")
  3163.     end
  3164. end)
  3165. createbutton("Toy Animation",animations).MouseButton1Click:Connect(function()
  3166.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3167.     if R15 then
  3168.         local char = localplr.Character
  3169.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://782841498"
  3170.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://782845736"
  3171.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://782843345"
  3172.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://782842708"
  3173.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://782847020"
  3174.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://782843869"
  3175.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://782846423"
  3176.     else
  3177.         notify('R15 animation pack',"Must be R15")
  3178.     end
  3179. end)
  3180. createbutton("Vampire Animation",animations).MouseButton1Click:Connect(function()
  3181.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3182.     if R15 then
  3183.         local char = localplr.Character
  3184.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://1083445855"
  3185.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://1083450166"
  3186.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1083473930"
  3187.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://1083462077"
  3188.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1083455352"
  3189.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1083439238"
  3190.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1083443587"
  3191.     else
  3192.         notify('R15 animation pack',"Must be R15")
  3193.     end
  3194. end)
  3195. createbutton("Werewolf Animation",animations).MouseButton1Click:Connect(function()
  3196.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3197.     if R15 then
  3198.         local char = localplr.Character
  3199.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://1083195517"
  3200.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://1083214717"
  3201.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1083178339"
  3202.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://1083216690"
  3203.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1083218792"
  3204.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1083182000"
  3205.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1083189019"
  3206.     else
  3207.         notify('R15 animation pack',"Must be R15")
  3208.     end
  3209. end)
  3210. createbutton("Zombie Animation", animations).MouseButton1Click:Connect(function()
  3211.     local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
  3212.     if R15 then
  3213.         local char = localplr.Character
  3214.         char.Animate.idle.Animation1.AnimationId = "rbxassetid://616158929"
  3215.         char.Animate.idle.Animation2.AnimationId = "rbxassetid://616160636"
  3216.         char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616168032"
  3217.         char.Animate.run.RunAnim.AnimationId = "rbxassetid://616163682"
  3218.         char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616161997"
  3219.         char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://616156119"
  3220.         char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616157476"
  3221.     else
  3222.         notify('R15 animation pack',"Must be R15")
  3223.     end
  3224. end)
  3225. credits = createsection("Settings")
  3226. createinfo("Main Scripter: 123XxXMegaProXxX123", credits)
  3227. createinfo("UI Design: 123XxXMegaProXxX123",credits)
  3228. createinfo("Tester: poier582", credits)
  3229. createinfo("DONT FORGET!!! You can scroll in menus!", credits)
  3230. color = createtextbox("Color Theme... (RGB): 255, 255, 255",credits)
  3231. color.FocusLost:Connect(function()
  3232.     local r, g, b = color.Text:match("(%d+),%s*(%d+),%s*(%d+)")
  3233.     if r and g and b then
  3234.         theme.Value = Color3.fromRGB(tonumber(r), tonumber(g), tonumber(b))
  3235.     else
  3236.         color.Text = ""
  3237.         notify("Invalid input format. Please enter RGB values separated by commas.")
  3238.     end
  3239. end)
  3240.  
  3241. local start
  3242. if Main:FindFirstChild(startmenu.."menu") then
  3243.     start = Main:FindFirstChild(startmenu.."menu")
  3244. else
  3245.     start = ""
  3246. end
  3247. openmenu(start)
  3248. notify(successmessage)
  3249. THO.Enabled = true
Add Comment
Please, Sign In to add comment