YoBoyGhost

Universal ROBLOX GUI

Aug 30th, 2023
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 63.61 KB | Gaming | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Universal Normal GUI",
  5. LoadingTitle = "Universal Ghost GUI",
  6. LoadingSubtitle = "by Ghost",
  7. ConfigurationSaving = {
  8. Enabled = false,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "universalGUI"
  11. },
  12. Discord = {
  13. Enabled = false,
  14. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  15. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  16. },
  17. KeySystem = false, -- Set this to true to use our key system
  18. KeySettings = {
  19. Title = "Universal Ghost GUI",
  20. Subtitle = "Key System",
  21. Note = "No method of obtaining the key is provided",
  22. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  24. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25. Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  26. }
  27. })
  28.  
  29. local MainTab = Window:CreateTab("Cheats", nil) -- Title, Image
  30. local MainSection = MainTab:CreateSection("Main")
  31.  
  32. Rayfield:Notify({
  33. Title = "GUI Executed",
  34. Content = "This gui works for every game, it's mainly made for starter exploiters",
  35. Duration = 5.5,
  36. Image = nil,
  37. Actions = { -- Notification Buttons
  38. Ignore = {
  39. Name = "Okay!",
  40. Callback = function()
  41. print("The user tapped Okay!")
  42. end
  43. },
  44. },
  45. })
  46.  
  47. local Button = MainTab:CreateButton({
  48. Name = "Admin (Infinite Yield)",
  49. Callback = function()
  50. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  51. end,
  52. })
  53.  
  54. local Button = MainTab:CreateButton({
  55. Name = "Universal Aimbot (BY EXECUTING THIS YOU WILL CLOSE THE GUI)",
  56. Callback = function()
  57.  
  58. local loadstring, getgenv, setclipboard, tablefind, UserInputService = loadstring, getgenv, setclipboard, table.find, game:GetService("UserInputService")
  59.  
  60. --// Loaded check
  61.  
  62. if getgenv().AirHub then return end
  63.  
  64. --// Environment
  65.  
  66. getgenv().AirHub = {}
  67.  
  68. --// Load Modules
  69.  
  70. loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/AirHub/main/Modules/Aimbot.lua"))()
  71. loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/AirHub/main/Modules/Wall%20Hack.lua"))()
  72.  
  73. --// Variables
  74.  
  75. local Library = loadstring(game:GetObjects("rbxassetid://7657867786")[1].Source)() -- Pepsi's UI Library
  76. local Aimbot, WallHack = getgenv().AirHub.Aimbot, getgenv().AirHub.WallHack
  77. local Parts, Fonts, TracersType = {"Head", "HumanoidRootPart", "Torso", "Left Arm", "Right Arm", "Left Leg", "Right Leg", "LeftHand", "RightHand", "LeftLowerArm", "RightLowerArm", "LeftUpperArm", "RightUpperArm", "LeftFoot", "LeftLowerLeg", "UpperTorso", "LeftUpperLeg", "RightFoot", "RightLowerLeg", "LowerTorso", "RightUpperLeg"}, {"UI", "System", "Plex", "Monospace"}, {"Bottom", "Center", "Mouse"}
  78.  
  79. --// Frame
  80.  
  81. Library.UnloadCallback = function()
  82. Aimbot.Functions:Exit()
  83. WallHack.Functions:Exit()
  84. getgenv().AirHub = nil
  85. end
  86.  
  87. local MainFrame = Library:CreateWindow({
  88. Name = "AirHub",
  89. Themeable = {
  90. Image = "7059346386",
  91. Info = "Made by Exunys\nPowered by Pepsi's UI Library",
  92. Credit = false
  93. },
  94. Background = "",
  95. Theme = [[{"__Designer.Colors.topGradient":"3F0C64","__Designer.Colors.section":"C259FB","__Designer.Colors.hoveredOptionBottom":"4819B4","__Designer.Background.ImageAssetID":"rbxassetid://4427304036","__Designer.Colors.selectedOption":"4E149C","__Designer.Colors.unselectedOption":"482271","__Designer.Files.WorkspaceFile":"AirHub","__Designer.Colors.unhoveredOptionTop":"310269","__Designer.Colors.outerBorder":"391D57","__Designer.Background.ImageColor":"69009C","__Designer.Colors.tabText":"B9B9B9","__Designer.Colors.elementBorder":"160B24","__Designer.Background.ImageTransparency":100,"__Designer.Colors.background":"1E1237","__Designer.Colors.innerBorder":"531E79","__Designer.Colors.bottomGradient":"361A60","__Designer.Colors.sectionBackground":"21002C","__Designer.Colors.hoveredOptionTop":"6B10F9","__Designer.Colors.otherElementText":"7B44A8","__Designer.Colors.main":"AB26FF","__Designer.Colors.elementText":"9F7DB5","__Designer.Colors.unhoveredOptionBottom":"3E0088","__Designer.Background.UseBackgroundImage":false}]]
  96. })
  97.  
  98. --// Tabs
  99.  
  100. local AimbotTab = MainFrame:CreateTab({
  101. Name = "Aimbot"
  102. })
  103.  
  104. local VisualsTab = MainFrame:CreateTab({
  105. Name = "Visuals"
  106. })
  107.  
  108. local CrosshairTab = MainFrame:CreateTab({
  109. Name = "Crosshair"
  110. })
  111.  
  112. local FunctionsTab = MainFrame:CreateTab({
  113. Name = "Functions"
  114. })
  115.  
  116. --// Aimbot Sections
  117.  
  118. local Values = AimbotTab:CreateSection({
  119. Name = "Values"
  120. })
  121.  
  122. local Checks = AimbotTab:CreateSection({
  123. Name = "Checks"
  124. })
  125.  
  126. local ThirdPerson = AimbotTab:CreateSection({
  127. Name = "Third Person"
  128. })
  129.  
  130. local FOV_Values = AimbotTab:CreateSection({
  131. Name = "Field Of View",
  132. Side = "Right"
  133. })
  134.  
  135. local FOV_Appearance = AimbotTab:CreateSection({
  136. Name = "FOV Circle Appearance",
  137. Side = "Right"
  138. })
  139.  
  140. --// Visuals Sections
  141.  
  142. local WallHackChecks = VisualsTab:CreateSection({
  143. Name = "Checks"
  144. })
  145.  
  146. local ESPSettings = VisualsTab:CreateSection({
  147. Name = "ESP Settings"
  148. })
  149.  
  150. local BoxesSettings = VisualsTab:CreateSection({
  151. Name = "Boxes Settings"
  152. })
  153.  
  154. local ChamsSettings = VisualsTab:CreateSection({
  155. Name = "Chams Settings"
  156. })
  157.  
  158. local TracersSettings = VisualsTab:CreateSection({
  159. Name = "Tracers Settings",
  160. Side = "Right"
  161. })
  162.  
  163. local HeadDotsSettings = VisualsTab:CreateSection({
  164. Name = "Head Dots Settings",
  165. Side = "Right"
  166. })
  167.  
  168. local HealthBarSettings = VisualsTab:CreateSection({
  169. Name = "Health Bar Settings",
  170. Side = "Right"
  171. })
  172.  
  173. --// Crosshair Sections
  174.  
  175. local CrosshairSettings = CrosshairTab:CreateSection({
  176. Name = "Settings"
  177. })
  178.  
  179. local CrosshairSettings_CenterDot = CrosshairTab:CreateSection({
  180. Name = "Center Dot Settings",
  181. Side = "Right"
  182. })
  183.  
  184. --// Functions Sections
  185.  
  186. local FunctionsSection = FunctionsTab:CreateSection({
  187. Name = "Functions"
  188. })
  189.  
  190. --// Aimbot Values
  191.  
  192. Values:AddToggle({
  193. Name = "Enabled",
  194. Value = Aimbot.Settings.Enabled,
  195. Callback = function(New, Old)
  196. Aimbot.Settings.Enabled = New
  197. end
  198. }).Default = Aimbot.Settings.Enabled
  199.  
  200. Values:AddToggle({
  201. Name = "Toggle",
  202. Value = Aimbot.Settings.Toggle,
  203. Callback = function(New, Old)
  204. Aimbot.Settings.Toggle = New
  205. end
  206. }).Default = Aimbot.Settings.Toggle
  207.  
  208. Aimbot.Settings.LockPart = Parts[1]; Values:AddDropdown({
  209. Name = "Lock Part",
  210. Value = Parts[1],
  211. Callback = function(New, Old)
  212. Aimbot.Settings.LockPart = New
  213. end,
  214. List = Parts,
  215. Nothing = "Head"
  216. }).Default = Parts[1]
  217.  
  218. Values:AddTextbox({ -- Using a Textbox instead of a Keybind because the UI Library doesn't support Mouse inputs like Left Click / Right Click...
  219. Name = "Hotkey",
  220. Value = Aimbot.Settings.TriggerKey,
  221. Callback = function(New, Old)
  222. Aimbot.Settings.TriggerKey = New
  223. end
  224. }).Default = Aimbot.Settings.TriggerKey
  225.  
  226. --[[
  227. Values:AddKeybind({
  228. Name = "Hotkey",
  229. Value = Aimbot.Settings.TriggerKey,
  230. Callback = function(New, Old)
  231. Aimbot.Settings.TriggerKey = stringmatch(tostring(New), "Enum%.[UserInputType]*[KeyCode]*%.(.+)")
  232. end,
  233. }).Default = Aimbot.Settings.TriggerKey
  234. ]]
  235.  
  236. Values:AddSlider({
  237. Name = "Sensitivity",
  238. Value = Aimbot.Settings.Sensitivity,
  239. Callback = function(New, Old)
  240. Aimbot.Settings.Sensitivity = New
  241. end,
  242. Min = 0,
  243. Max = 1,
  244. Decimals = 2
  245. }).Default = Aimbot.Settings.Sensitivity
  246.  
  247. --// Aimbot Checks
  248.  
  249. Checks:AddToggle({
  250. Name = "Team Check",
  251. Value = Aimbot.Settings.TeamCheck,
  252. Callback = function(New, Old)
  253. Aimbot.Settings.TeamCheck = New
  254. end
  255. }).Default = Aimbot.Settings.TeamCheck
  256.  
  257. Checks:AddToggle({
  258. Name = "Wall Check",
  259. Value = Aimbot.Settings.WallCheck,
  260. Callback = function(New, Old)
  261. Aimbot.Settings.WallCheck = New
  262. end
  263. }).Default = Aimbot.Settings.WallCheck
  264.  
  265. Checks:AddToggle({
  266. Name = "Alive Check",
  267. Value = Aimbot.Settings.AliveCheck,
  268. Callback = function(New, Old)
  269. Aimbot.Settings.AliveCheck = New
  270. end
  271. }).Default = Aimbot.Settings.AliveCheck
  272.  
  273. --// Aimbot ThirdPerson
  274.  
  275. ThirdPerson:AddToggle({
  276. Name = "Enable Third Person",
  277. Value = Aimbot.Settings.ThirdPerson,
  278. Callback = function(New, Old)
  279. Aimbot.Settings.ThirdPerson = New
  280. end
  281. }).Default = Aimbot.Settings.ThirdPerson
  282.  
  283. ThirdPerson:AddSlider({
  284. Name = "Sensitivity",
  285. Value = Aimbot.Settings.ThirdPersonSensitivity,
  286. Callback = function(New, Old)
  287. Aimbot.Settings.ThirdPersonSensitivity = New
  288. end,
  289. Min = 0.1,
  290. Max = 5,
  291. Decimals = 1
  292. }).Default = Aimbot.Settings.ThirdPersonSensitivity
  293.  
  294. --// FOV Settings Values
  295.  
  296. FOV_Values:AddToggle({
  297. Name = "Enabled",
  298. Value = Aimbot.FOVSettings.Enabled,
  299. Callback = function(New, Old)
  300. Aimbot.FOVSettings.Enabled = New
  301. end
  302. }).Default = Aimbot.FOVSettings.Enabled
  303.  
  304. FOV_Values:AddToggle({
  305. Name = "Visible",
  306. Value = Aimbot.FOVSettings.Visible,
  307. Callback = function(New, Old)
  308. Aimbot.FOVSettings.Visible = New
  309. end
  310. }).Default = Aimbot.FOVSettings.Visible
  311.  
  312. FOV_Values:AddSlider({
  313. Name = "Amount",
  314. Value = Aimbot.FOVSettings.Amount,
  315. Callback = function(New, Old)
  316. Aimbot.FOVSettings.Amount = New
  317. end,
  318. Min = 10,
  319. Max = 300
  320. }).Default = Aimbot.FOVSettings.Amount
  321.  
  322. --// FOV Settings Appearance
  323.  
  324. FOV_Appearance:AddToggle({
  325. Name = "Filled",
  326. Value = Aimbot.FOVSettings.Filled,
  327. Callback = function(New, Old)
  328. Aimbot.FOVSettings.Filled = New
  329. end
  330. }).Default = Aimbot.FOVSettings.Filled
  331.  
  332. FOV_Appearance:AddSlider({
  333. Name = "Transparency",
  334. Value = Aimbot.FOVSettings.Transparency,
  335. Callback = function(New, Old)
  336. Aimbot.FOVSettings.Transparency = New
  337. end,
  338. Min = 0,
  339. Max = 1,
  340. Decimal = 1
  341. }).Default = Aimbot.FOVSettings.Transparency
  342.  
  343. FOV_Appearance:AddSlider({
  344. Name = "Sides",
  345. Value = Aimbot.FOVSettings.Sides,
  346. Callback = function(New, Old)
  347. Aimbot.FOVSettings.Sides = New
  348. end,
  349. Min = 3,
  350. Max = 60
  351. }).Default = Aimbot.FOVSettings.Sides
  352.  
  353. FOV_Appearance:AddSlider({
  354. Name = "Thickness",
  355. Value = Aimbot.FOVSettings.Thickness,
  356. Callback = function(New, Old)
  357. Aimbot.FOVSettings.Thickness = New
  358. end,
  359. Min = 1,
  360. Max = 50
  361. }).Default = Aimbot.FOVSettings.Thickness
  362.  
  363. FOV_Appearance:AddColorpicker({
  364. Name = "Color",
  365. Value = Aimbot.FOVSettings.Color,
  366. Callback = function(New, Old)
  367. Aimbot.FOVSettings.Color = New
  368. end
  369. }).Default = Aimbot.FOVSettings.Color
  370.  
  371. FOV_Appearance:AddColorpicker({
  372. Name = "Locked Color",
  373. Value = Aimbot.FOVSettings.LockedColor,
  374. Callback = function(New, Old)
  375. Aimbot.FOVSettings.LockedColor = New
  376. end
  377. }).Default = Aimbot.FOVSettings.LockedColor
  378.  
  379. --// Wall Hack Settings
  380.  
  381. WallHackChecks:AddToggle({
  382. Name = "Enabled",
  383. Value = WallHack.Settings.Enabled,
  384. Callback = function(New, Old)
  385. WallHack.Settings.Enabled = New
  386. end
  387. }).Default = WallHack.Settings.Enabled
  388.  
  389. WallHackChecks:AddToggle({
  390. Name = "Team Check",
  391. Value = WallHack.Settings.TeamCheck,
  392. Callback = function(New, Old)
  393. WallHack.Settings.TeamCheck = New
  394. end
  395. }).Default = WallHack.Settings.TeamCheck
  396.  
  397. WallHackChecks:AddToggle({
  398. Name = "Alive Check",
  399. Value = WallHack.Settings.AliveCheck,
  400. Callback = function(New, Old)
  401. WallHack.Settings.AliveCheck = New
  402. end
  403. }).Default = WallHack.Settings.AliveCheck
  404.  
  405. --// Visuals Settings
  406.  
  407. ESPSettings:AddToggle({
  408. Name = "Enabled",
  409. Value = WallHack.Visuals.ESPSettings.Enabled,
  410. Callback = function(New, Old)
  411. WallHack.Visuals.ESPSettings.Enabled = New
  412. end
  413. }).Default = WallHack.Visuals.ESPSettings.Enabled
  414.  
  415. ESPSettings:AddToggle({
  416. Name = "Outline",
  417. Value = WallHack.Visuals.ESPSettings.Outline,
  418. Callback = function(New, Old)
  419. WallHack.Visuals.ESPSettings.Outline = New
  420. end
  421. }).Default = WallHack.Visuals.ESPSettings.Outline
  422.  
  423. ESPSettings:AddToggle({
  424. Name = "Display Distance",
  425. Value = WallHack.Visuals.ESPSettings.DisplayDistance,
  426. Callback = function(New, Old)
  427. WallHack.Visuals.ESPSettings.DisplayDistance = New
  428. end
  429. }).Default = WallHack.Visuals.ESPSettings.DisplayDistance
  430.  
  431. ESPSettings:AddToggle({
  432. Name = "Display Health",
  433. Value = WallHack.Visuals.ESPSettings.DisplayHealth,
  434. Callback = function(New, Old)
  435. WallHack.Visuals.ESPSettings.DisplayHealth = New
  436. end
  437. }).Default = WallHack.Visuals.ESPSettings.DisplayHealth
  438.  
  439. ESPSettings:AddToggle({
  440. Name = "Display Name",
  441. Value = WallHack.Visuals.ESPSettings.DisplayName,
  442. Callback = function(New, Old)
  443. WallHack.Visuals.ESPSettings.DisplayName = New
  444. end
  445. }).Default = WallHack.Visuals.ESPSettings.DisplayName
  446.  
  447. ESPSettings:AddSlider({
  448. Name = "Offset",
  449. Value = WallHack.Visuals.ESPSettings.Offset,
  450. Callback = function(New, Old)
  451. WallHack.Visuals.ESPSettings.Offset = New
  452. end,
  453. Min = -30,
  454. Max = 30
  455. }).Default = WallHack.Visuals.ESPSettings.Offset
  456.  
  457. ESPSettings:AddColorpicker({
  458. Name = "Text Color",
  459. Value = WallHack.Visuals.ESPSettings.TextColor,
  460. Callback = function(New, Old)
  461. WallHack.Visuals.ESPSettings.TextColor = New
  462. end
  463. }).Default = WallHack.Visuals.ESPSettings.TextColor
  464.  
  465. ESPSettings:AddColorpicker({
  466. Name = "Outline Color",
  467. Value = WallHack.Visuals.ESPSettings.OutlineColor,
  468. Callback = function(New, Old)
  469. WallHack.Visuals.ESPSettings.OutlineColor = New
  470. end
  471. }).Default = WallHack.Visuals.ESPSettings.OutlineColor
  472.  
  473. ESPSettings:AddSlider({
  474. Name = "Text Transparency",
  475. Value = WallHack.Visuals.ESPSettings.TextTransparency,
  476. Callback = function(New, Old)
  477. WallHack.Visuals.ESPSettings.TextTransparency = New
  478. end,
  479. Min = 0,
  480. Max = 1,
  481. Decimals = 2
  482. }).Default = WallHack.Visuals.ESPSettings.TextTransparency
  483.  
  484. ESPSettings:AddSlider({
  485. Name = "Text Size",
  486. Value = WallHack.Visuals.ESPSettings.TextSize,
  487. Callback = function(New, Old)
  488. WallHack.Visuals.ESPSettings.TextSize = New
  489. end,
  490. Min = 8,
  491. Max = 24
  492. }).Default = WallHack.Visuals.ESPSettings.TextSize
  493.  
  494. ESPSettings:AddDropdown({
  495. Name = "Text Font",
  496. Value = Fonts[WallHack.Visuals.ESPSettings.TextFont + 1],
  497. Callback = function(New, Old)
  498. WallHack.Visuals.ESPSettings.TextFont = Drawing.Fonts[New]
  499. end,
  500. List = Fonts,
  501. Nothing = "UI"
  502. }).Default = Fonts[WallHack.Visuals.ESPSettings.TextFont + 1]
  503.  
  504. BoxesSettings:AddToggle({
  505. Name = "Enabled",
  506. Value = WallHack.Visuals.BoxSettings.Enabled,
  507. Callback = function(New, Old)
  508. WallHack.Visuals.BoxSettings.Enabled = New
  509. end
  510. }).Default = WallHack.Visuals.BoxSettings.Enabled
  511.  
  512. BoxesSettings:AddSlider({
  513. Name = "Transparency",
  514. Value = WallHack.Visuals.BoxSettings.Transparency,
  515. Callback = function(New, Old)
  516. WallHack.Visuals.BoxSettings.Transparency = New
  517. end,
  518. Min = 0,
  519. Max = 1,
  520. Decimals = 2
  521. }).Default = WallHack.Visuals.BoxSettings.Transparency
  522.  
  523. BoxesSettings:AddSlider({
  524. Name = "Thickness",
  525. Value = WallHack.Visuals.BoxSettings.Thickness,
  526. Callback = function(New, Old)
  527. WallHack.Visuals.BoxSettings.Thickness = New
  528. end,
  529. Min = 1,
  530. Max = 5
  531. }).Default = WallHack.Visuals.BoxSettings.Thickness
  532.  
  533. BoxesSettings:AddSlider({
  534. Name = "Scale Increase (For 3D)",
  535. Value = WallHack.Visuals.BoxSettings.Increase,
  536. Callback = function(New, Old)
  537. WallHack.Visuals.BoxSettings.Increase = New
  538. end,
  539. Min = 1,
  540. Max = 5
  541. }).Default = WallHack.Visuals.BoxSettings.Increase
  542.  
  543. BoxesSettings:AddColorpicker({
  544. Name = "Color",
  545. Value = WallHack.Visuals.BoxSettings.Color,
  546. Callback = function(New, Old)
  547. WallHack.Visuals.BoxSettings.Color = New
  548. end
  549. }).Default = WallHack.Visuals.BoxSettings.Color
  550.  
  551. BoxesSettings:AddDropdown({
  552. Name = "Type",
  553. Value = WallHack.Visuals.BoxSettings.Type == 1 and "3D" or "2D",
  554. Callback = function(New, Old)
  555. WallHack.Visuals.BoxSettings.Type = New == "3D" and 1 or 2
  556. end,
  557. List = {"3D", "2D"},
  558. Nothing = "3D"
  559. }).Default = WallHack.Visuals.BoxSettings.Type == 1 and "3D" or "2D"
  560.  
  561. BoxesSettings:AddToggle({
  562. Name = "Filled (2D Square)",
  563. Value = WallHack.Visuals.BoxSettings.Filled,
  564. Callback = function(New, Old)
  565. WallHack.Visuals.BoxSettings.Filled = New
  566. end
  567. }).Default = WallHack.Visuals.BoxSettings.Filled
  568.  
  569. ChamsSettings:AddToggle({
  570. Name = "Enabled",
  571. Value = WallHack.Visuals.ChamsSettings.Enabled,
  572. Callback = function(New, Old)
  573. WallHack.Visuals.ChamsSettings.Enabled = New
  574. end
  575. }).Default = WallHack.Visuals.ChamsSettings.Enabled
  576.  
  577. ChamsSettings:AddToggle({
  578. Name = "Filled",
  579. Value = WallHack.Visuals.ChamsSettings.Filled,
  580. Callback = function(New, Old)
  581. WallHack.Visuals.ChamsSettings.Filled = New
  582. end
  583. }).Default = WallHack.Visuals.ChamsSettings.Filled
  584.  
  585. ChamsSettings:AddToggle({
  586. Name = "Entire Body (For R15 Rigs)",
  587. Value = WallHack.Visuals.ChamsSettings.EntireBody,
  588. Callback = function(New, Old)
  589. WallHack.Visuals.ChamsSettings.EntireBody = New
  590. end
  591. }).Default = WallHack.Visuals.ChamsSettings.EntireBody
  592.  
  593. ChamsSettings:AddSlider({
  594. Name = "Transparency",
  595. Value = WallHack.Visuals.ChamsSettings.Transparency,
  596. Callback = function(New, Old)
  597. WallHack.Visuals.ChamsSettings.Transparency = New
  598. end,
  599. Min = 0,
  600. Max = 1,
  601. Decimals = 2
  602. }).Default = WallHack.Visuals.ChamsSettings.Transparency
  603.  
  604. ChamsSettings:AddSlider({
  605. Name = "Thickness",
  606. Value = WallHack.Visuals.ChamsSettings.Thickness,
  607. Callback = function(New, Old)
  608. WallHack.Visuals.ChamsSettings.Thickness = New
  609. end,
  610. Min = 0,
  611. Max = 3
  612. }).Default = WallHack.Visuals.ChamsSettings.Thickness
  613.  
  614. ChamsSettings:AddColorpicker({
  615. Name = "Color",
  616. Value = WallHack.Visuals.ChamsSettings.Color,
  617. Callback = function(New, Old)
  618. WallHack.Visuals.ChamsSettings.Color = New
  619. end
  620. }).Default = WallHack.Visuals.ChamsSettings.Color
  621.  
  622. TracersSettings:AddToggle({
  623. Name = "Enabled",
  624. Value = WallHack.Visuals.TracersSettings.Enabled,
  625. Callback = function(New, Old)
  626. WallHack.Visuals.TracersSettings.Enabled = New
  627. end
  628. }).Default = WallHack.Visuals.TracersSettings.Enabled
  629.  
  630. TracersSettings:AddSlider({
  631. Name = "Transparency",
  632. Value = WallHack.Visuals.TracersSettings.Transparency,
  633. Callback = function(New, Old)
  634. WallHack.Visuals.TracersSettings.Transparency = New
  635. end,
  636. Min = 0,
  637. Max = 1,
  638. Decimals = 2
  639. }).Default = WallHack.Visuals.TracersSettings.Transparency
  640.  
  641. TracersSettings:AddSlider({
  642. Name = "Thickness",
  643. Value = WallHack.Visuals.TracersSettings.Thickness,
  644. Callback = function(New, Old)
  645. WallHack.Visuals.TracersSettings.Thickness = New
  646. end,
  647. Min = 1,
  648. Max = 5
  649. }).Default = WallHack.Visuals.TracersSettings.Thickness
  650.  
  651. TracersSettings:AddColorpicker({
  652. Name = "Color",
  653. Value = WallHack.Visuals.TracersSettings.Color,
  654. Callback = function(New, Old)
  655. WallHack.Visuals.TracersSettings.Color = New
  656. end
  657. }).Default = WallHack.Visuals.TracersSettings.Color
  658.  
  659. TracersSettings:AddDropdown({
  660. Name = "Start From",
  661. Value = TracersType[WallHack.Visuals.TracersSettings.Type],
  662. Callback = function(New, Old)
  663. WallHack.Visuals.TracersSettings.Type = tablefind(TracersType, New)
  664. end,
  665. List = TracersType,
  666. Nothing = "Bottom"
  667. }).Default = Fonts[WallHack.Visuals.TracersSettings.Type + 1]
  668.  
  669. HeadDotsSettings:AddToggle({
  670. Name = "Enabled",
  671. Value = WallHack.Visuals.HeadDotSettings.Enabled,
  672. Callback = function(New, Old)
  673. WallHack.Visuals.HeadDotSettings.Enabled = New
  674. end
  675. }).Default = WallHack.Visuals.HeadDotSettings.Enabled
  676.  
  677. HeadDotsSettings:AddToggle({
  678. Name = "Filled",
  679. Value = WallHack.Visuals.HeadDotSettings.Filled,
  680. Callback = function(New, Old)
  681. WallHack.Visuals.HeadDotSettings.Filled = New
  682. end
  683. }).Default = WallHack.Visuals.HeadDotSettings.Filled
  684.  
  685. HeadDotsSettings:AddSlider({
  686. Name = "Transparency",
  687. Value = WallHack.Visuals.HeadDotSettings.Transparency,
  688. Callback = function(New, Old)
  689. WallHack.Visuals.HeadDotSettings.Transparency = New
  690. end,
  691. Min = 0,
  692. Max = 1,
  693. Decimals = 2
  694. }).Default = WallHack.Visuals.HeadDotSettings.Transparency
  695.  
  696. HeadDotsSettings:AddSlider({
  697. Name = "Thickness",
  698. Value = WallHack.Visuals.HeadDotSettings.Thickness,
  699. Callback = function(New, Old)
  700. WallHack.Visuals.HeadDotSettings.Thickness = New
  701. end,
  702. Min = 1,
  703. Max = 5
  704. }).Default = WallHack.Visuals.HeadDotSettings.Thickness
  705.  
  706. HeadDotsSettings:AddSlider({
  707. Name = "Sides",
  708. Value = WallHack.Visuals.HeadDotSettings.Sides,
  709. Callback = function(New, Old)
  710. WallHack.Visuals.HeadDotSettings.Sides = New
  711. end,
  712. Min = 3,
  713. Max = 60
  714. }).Default = WallHack.Visuals.HeadDotSettings.Sides
  715.  
  716. HeadDotsSettings:AddColorpicker({
  717. Name = "Color",
  718. Value = WallHack.Visuals.HeadDotSettings.Color,
  719. Callback = function(New, Old)
  720. WallHack.Visuals.HeadDotSettings.Color = New
  721. end
  722. }).Default = WallHack.Visuals.HeadDotSettings.Color
  723.  
  724. HealthBarSettings:AddToggle({
  725. Name = "Enabled",
  726. Value = WallHack.Visuals.HealthBarSettings.Enabled,
  727. Callback = function(New, Old)
  728. WallHack.Visuals.HealthBarSettings.Enabled = New
  729. end
  730. }).Default = WallHack.Visuals.HealthBarSettings.Enabled
  731.  
  732. HealthBarSettings:AddDropdown({
  733. Name = "Position",
  734. Value = WallHack.Visuals.HealthBarSettings.Type == 1 and "Top" or WallHack.Visuals.HealthBarSettings.Type == 2 and "Bottom" or WallHack.Visuals.HealthBarSettings.Type == 3 and "Left" or "Right",
  735. Callback = function(New, Old)
  736. WallHack.Visuals.HealthBarSettings.Type = New == "Top" and 1 or New == "Bottom" and 2 or New == "Left" and 3 or 4
  737. end,
  738. List = {"Top", "Bottom", "Left", "Right"},
  739. Nothing = "Left"
  740. }).Default = WallHack.Visuals.HealthBarSettings.Type == 1 and "Top" or WallHack.Visuals.HealthBarSettings.Type == 2 and "Bottom" or WallHack.Visuals.HealthBarSettings.Type == 3 and "Left" or "Right"
  741.  
  742. HealthBarSettings:AddSlider({
  743. Name = "Transparency",
  744. Value = WallHack.Visuals.HealthBarSettings.Transparency,
  745. Callback = function(New, Old)
  746. WallHack.Visuals.HealthBarSettings.Transparency = New
  747. end,
  748. Min = 0,
  749. Max = 1,
  750. Decimals = 2
  751. }).Default = WallHack.Visuals.HealthBarSettings.Transparency
  752.  
  753. HealthBarSettings:AddSlider({
  754. Name = "Size",
  755. Value = WallHack.Visuals.HealthBarSettings.Size,
  756. Callback = function(New, Old)
  757. WallHack.Visuals.HealthBarSettings.Size = New
  758. end,
  759. Min = 2,
  760. Max = 10
  761. }).Default = WallHack.Visuals.HealthBarSettings.Size
  762.  
  763. HealthBarSettings:AddSlider({
  764. Name = "Blue",
  765. Value = WallHack.Visuals.HealthBarSettings.Blue,
  766. Callback = function(New, Old)
  767. WallHack.Visuals.HealthBarSettings.Blue = New
  768. end,
  769. Min = 0,
  770. Max = 255
  771. }).Default = WallHack.Visuals.HealthBarSettings.Blue
  772.  
  773. HealthBarSettings:AddSlider({
  774. Name = "Offset",
  775. Value = WallHack.Visuals.HealthBarSettings.Offset,
  776. Callback = function(New, Old)
  777. WallHack.Visuals.HealthBarSettings.Offset = New
  778. end,
  779. Min = -30,
  780. Max = 30
  781. }).Default = WallHack.Visuals.HealthBarSettings.Offset
  782.  
  783. HealthBarSettings:AddColorpicker({
  784. Name = "Outline Color",
  785. Value = WallHack.Visuals.HealthBarSettings.OutlineColor,
  786. Callback = function(New, Old)
  787. WallHack.Visuals.HealthBarSettings.OutlineColor = New
  788. end
  789. }).Default = WallHack.Visuals.HealthBarSettings.OutlineColor
  790.  
  791. --// Crosshair Settings
  792.  
  793. CrosshairSettings:AddToggle({
  794. Name = "Mouse Cursor",
  795. Value = UserInputService.MouseIconEnabled,
  796. Callback = function(New, Old)
  797. UserInputService.MouseIconEnabled = New
  798. end
  799. }).Default = UserInputService.MouseIconEnabled
  800.  
  801. CrosshairSettings:AddToggle({
  802. Name = "Enabled",
  803. Value = WallHack.Crosshair.Settings.Enabled,
  804. Callback = function(New, Old)
  805. WallHack.Crosshair.Settings.Enabled = New
  806. end
  807. }).Default = WallHack.Crosshair.Settings.Enabled
  808.  
  809. CrosshairSettings:AddColorpicker({
  810. Name = "Color",
  811. Value = WallHack.Crosshair.Settings.Color,
  812. Callback = function(New, Old)
  813. WallHack.Crosshair.Settings.Color = New
  814. end
  815. }).Default = WallHack.Crosshair.Settings.Color
  816.  
  817. CrosshairSettings:AddSlider({
  818. Name = "Transparency",
  819. Value = WallHack.Crosshair.Settings.Transparency,
  820. Callback = function(New, Old)
  821. WallHack.Crosshair.Settings.Transparency = New
  822. end,
  823. Min = 0,
  824. Max = 1,
  825. Decimals = 2
  826. }).Default = WallHack.Crosshair.Settings.Transparency
  827.  
  828. CrosshairSettings:AddSlider({
  829. Name = "Size",
  830. Value = WallHack.Crosshair.Settings.Size,
  831. Callback = function(New, Old)
  832. WallHack.Crosshair.Settings.Size = New
  833. end,
  834. Min = 8,
  835. Max = 24
  836. }).Default = WallHack.Crosshair.Settings.Size
  837.  
  838. CrosshairSettings:AddSlider({
  839. Name = "Thickness",
  840. Value = WallHack.Crosshair.Settings.Thickness,
  841. Callback = function(New, Old)
  842. WallHack.Crosshair.Settings.Thickness = New
  843. end,
  844. Min = 1,
  845. Max = 5
  846. }).Default = WallHack.Crosshair.Settings.Thickness
  847.  
  848. CrosshairSettings:AddSlider({
  849. Name = "Gap Size",
  850. Value = WallHack.Crosshair.Settings.GapSize,
  851. Callback = function(New, Old)
  852. WallHack.Crosshair.Settings.GapSize = New
  853. end,
  854. Min = 0,
  855. Max = 20
  856. }).Default = WallHack.Crosshair.Settings.GapSize
  857.  
  858. CrosshairSettings:AddSlider({
  859. Name = "Rotation (Degrees)",
  860. Value = WallHack.Crosshair.Settings.Rotation,
  861. Callback = function(New, Old)
  862. WallHack.Crosshair.Settings.Rotation = New
  863. end,
  864. Min = -180,
  865. Max = 180
  866. }).Default = WallHack.Crosshair.Settings.Rotation
  867.  
  868. CrosshairSettings:AddDropdown({
  869. Name = "Position",
  870. Value = WallHack.Crosshair.Settings.Type == 1 and "Mouse" or "Center",
  871. Callback = function(New, Old)
  872. WallHack.Crosshair.Settings.Type = New == "Mouse" and 1 or 2
  873. end,
  874. List = {"Mouse", "Center"},
  875. Nothing = "Mouse"
  876. }).Default = WallHack.Crosshair.Settings.Type == 1 and "Mouse" or "Center"
  877.  
  878. CrosshairSettings_CenterDot:AddToggle({
  879. Name = "Center Dot",
  880. Value = WallHack.Crosshair.Settings.CenterDot,
  881. Callback = function(New, Old)
  882. WallHack.Crosshair.Settings.CenterDot = New
  883. end
  884. }).Default = WallHack.Crosshair.Settings.CenterDot
  885.  
  886. CrosshairSettings_CenterDot:AddColorpicker({
  887. Name = "Center Dot Color",
  888. Value = WallHack.Crosshair.Settings.CenterDotColor,
  889. Callback = function(New, Old)
  890. WallHack.Crosshair.Settings.CenterDotColor = New
  891. end
  892. }).Default = WallHack.Crosshair.Settings.CenterDotColor
  893.  
  894. CrosshairSettings_CenterDot:AddSlider({
  895. Name = "Center Dot Size",
  896. Value = WallHack.Crosshair.Settings.CenterDotSize,
  897. Callback = function(New, Old)
  898. WallHack.Crosshair.Settings.CenterDotSize = New
  899. end,
  900. Min = 1,
  901. Max = 6
  902. }).Default = WallHack.Crosshair.Settings.CenterDotSize
  903.  
  904. CrosshairSettings_CenterDot:AddSlider({
  905. Name = "Center Dot Transparency",
  906. Value = WallHack.Crosshair.Settings.CenterDotTransparency,
  907. Callback = function(New, Old)
  908. WallHack.Crosshair.Settings.CenterDotTransparency = New
  909. end,
  910. Min = 0,
  911. Max = 1,
  912. Decimals = 2
  913. }).Default = WallHack.Crosshair.Settings.CenterDotTransparency
  914.  
  915. CrosshairSettings_CenterDot:AddToggle({
  916. Name = "Center Dot Filled",
  917. Value = WallHack.Crosshair.Settings.CenterDotFilled,
  918. Callback = function(New, Old)
  919. WallHack.Crosshair.Settings.CenterDotFilled = New
  920. end
  921. }).Default = WallHack.Crosshair.Settings.CenterDotFilled
  922.  
  923. --// Functions / Functions
  924.  
  925. FunctionsSection:AddButton({
  926. Name = "Reset Settings",
  927. Callback = function()
  928. Aimbot.Functions:ResetSettings()
  929. WallHack.Functions:ResetSettings()
  930. Library.ResetAll()
  931. end
  932. })
  933.  
  934. FunctionsSection:AddButton({
  935. Name = "Restart",
  936. Callback = function()
  937. Aimbot.Functions:Restart()
  938. WallHack.Functions:Restart()
  939. end
  940. })
  941.  
  942. FunctionsSection:AddButton({
  943. Name = "Exit",
  944. Callback = Library.Unload,
  945. })
  946.  
  947. FunctionsSection:AddButton({
  948. Name = "Copy Script Page",
  949. Callback = function()
  950. setclipboard("https://github.com/Exunys/AirHub")
  951. end
  952. })
  953. end,
  954. })
  955.  
  956. local Button = MainTab:CreateButton({
  957. Name = "Fly",
  958. Callback = function()
  959. loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
  960. end,
  961. })
  962.  
  963. local Button = MainTab:CreateButton({
  964. Name = "Infinite Jump",
  965. Callback = function()
  966. local ScreenGui = Instance.new("ScreenGui")
  967. local main = Instance.new("Frame")
  968. local TextLabel = Instance.new("TextLabel")
  969. local Frame = Instance.new("Frame")
  970. local INFJUMP = Instance.new("TextButton")
  971. local TextLabel_2 = Instance.new("TextLabel")
  972.  
  973. --Properties:
  974.  
  975. ScreenGui.Parent = game.CoreGui
  976.  
  977. main.Name = "main"
  978. main.Parent = ScreenGui
  979. main.Active = true
  980. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  981. main.BorderSizePixel = 0
  982. main.Position = UDim2.new(0.119258665, 0, 0, 0)
  983. main.Size = UDim2.new(0, 146, 0, 28)
  984. main.Active = true
  985. main.Draggable = false
  986.  
  987. TextLabel.Parent = main
  988. TextLabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  989. TextLabel.BorderSizePixel = 0
  990. TextLabel.Size = UDim2.new(0, 146, 0, 28)
  991. TextLabel.Font = Enum.Font.SciFi
  992. TextLabel.Text = "Misc"
  993. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  994. TextLabel.TextSize = 17.000
  995. TextLabel.TextWrapped = true
  996.  
  997. Frame.Parent = main
  998. Frame.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  999. Frame.BorderSizePixel = 0
  1000. Frame.Position = UDim2.new(0, 0, 1, 0)
  1001. Frame.Size = UDim2.new(0, 146, 0, 61)
  1002.  
  1003. INFJUMP.Name = "INFJUMP"
  1004. INFJUMP.Parent = main
  1005. INFJUMP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1006. INFJUMP.BorderSizePixel = 0
  1007. INFJUMP.Position = UDim2.new(0.794520497, 0, 1.6785717, 0)
  1008. INFJUMP.Size = UDim2.new(0, 21, 0, 21)
  1009. INFJUMP.Font = Enum.Font.SourceSans
  1010. INFJUMP.Text = ""
  1011. INFJUMP.TextColor3 = Color3.fromRGB(0, 0, 0)
  1012. INFJUMP.TextSize = 14.000
  1013. INFJUMP.MouseButton1Down:connect(function()
  1014. local Player = game:GetService'Players'.LocalPlayer;
  1015. local UIS = game:GetService'UserInputService';
  1016.  
  1017. _G.JumpHeight = 50;
  1018.  
  1019. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  1020.  
  1021. UIS.InputBegan:connect(function(UserInput)
  1022. if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  1023. Action(Player.Character.Humanoid, function(self)
  1024. if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  1025. Action(self.Parent.HumanoidRootPart, function(self)
  1026. self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  1027. end)
  1028. end
  1029. end)
  1030. end
  1031. end)
  1032. end)
  1033.  
  1034. TextLabel_2.Parent = main
  1035. TextLabel_2.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  1036. TextLabel_2.BorderSizePixel = 0
  1037. TextLabel_2.Position = UDim2.new(0.0547945201, 0, 1.57142854, 0)
  1038. TextLabel_2.Size = UDim2.new(0, 94, 0, 28)
  1039. TextLabel_2.Font = Enum.Font.SciFi
  1040. TextLabel_2.Text = "Inf jump"
  1041. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  1042. TextLabel_2.TextSize = 17.000
  1043. TextLabel_2.TextWrapped = true
  1044.  
  1045. -- Scripts:
  1046.  
  1047. local function TKDWQ_fake_script() -- INFJUMP.LocalScript
  1048. local script = Instance.new('LocalScript', INFJUMP)
  1049.  
  1050. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  1051.  
  1052. counter = 0
  1053.  
  1054. while wait(0.1)do
  1055. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  1056.  
  1057. counter = counter + 0.01
  1058. end
  1059. end
  1060. coroutine.wrap(TKDWQ_fake_script)()
  1061. end,
  1062. })
  1063.  
  1064. local Button = MainTab:CreateButton({
  1065. Name = "Chat Bypasser",
  1066. Callback = function()
  1067. _G.Keybind = 'Q' -- This is usually defaulted to Q. However, you can change to whatever you want.
  1068. _G.Method = 1 -- 1 for the new method, 2 for the emoji method. If not defined, it will be defaulted to 1.
  1069. loadstring(game:HttpGet("https://raw.githubusercontent.com/synnyyy/synergy/additional/betterbypasser",true))()
  1070. end,
  1071. })
  1072.  
  1073. local Slider = MainTab:CreateSlider({
  1074. Name = "Walkspeed",
  1075. Range = {0, 255},
  1076. Increment = 1,
  1077. Suffix = "Speed",
  1078. CurrentValue = 16,
  1079. Flag = "Slider1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  1080. Callback = function(Value)
  1081. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  1082. end,
  1083. })
  1084.  
  1085. local Slider = MainTab:CreateSlider({
  1086. Name = "JumpPower",
  1087. Range = {0, 255},
  1088. Increment = 1,
  1089. Suffix = "Jump",
  1090. CurrentValue = 100,
  1091. Flag = "Slider2", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  1092. Callback = function(Value)
  1093. game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Value)
  1094. end,
  1095. })
  1096.  
  1097. local Button = MainTab:CreateButton({
  1098. Name = "Fake Animation (IT MAY CLOSE THE GUI)",
  1099. Callback = function()
  1100. local AnimationChanger = Instance.new("ScreenGui")
  1101. local Main = Instance.new("Frame")
  1102. local TopBar = Instance.new("Frame")
  1103. local Close = Instance.new("TextButton")
  1104. local TextLabel = Instance.new("TextLabel")
  1105. local TextLabel_2 = Instance.new("TextLabel")
  1106. local NormalTab = Instance.new("Frame")
  1107. local A_Astronaut = Instance.new("TextButton")
  1108. local A_Bubbly = Instance.new("TextButton")
  1109. local A_Cartoony = Instance.new("TextButton")
  1110. local A_Elder = Instance.new("TextButton")
  1111. local A_Knight = Instance.new("TextButton")
  1112. local A_Levitation = Instance.new("TextButton")
  1113. local A_Mage = Instance.new("TextButton")
  1114. local A_Ninja = Instance.new("TextButton")
  1115. local A_Pirate = Instance.new("TextButton")
  1116. local A_Robot = Instance.new("TextButton")
  1117. local A_Stylish = Instance.new("TextButton")
  1118. local A_SuperHero = Instance.new("TextButton")
  1119. local A_Toy = Instance.new("TextButton")
  1120. local A_Vampire = Instance.new("TextButton")
  1121. local A_Werewolf = Instance.new("TextButton")
  1122. local A_Zombie = Instance.new("TextButton")
  1123. local Category = Instance.new("TextLabel")
  1124. local SpecialTab = Instance.new("Frame")
  1125. local A_Patrol = Instance.new("TextButton")
  1126. local A_Confident = Instance.new("TextButton")
  1127. local A_Popstar = Instance.new("TextButton")
  1128. local A_Cowboy = Instance.new("TextButton")
  1129. local A_Ghost = Instance.new("TextButton")
  1130. local A_Sneaky = Instance.new("TextButton")
  1131. local A_Princess = Instance.new("TextButton")
  1132. local Category_2 = Instance.new("TextLabel")
  1133. local OtherTab = Instance.new("Frame")
  1134. local Category_3 = Instance.new("TextLabel")
  1135. local A_None = Instance.new("TextButton")
  1136. local A_Anthro = Instance.new("TextButton")
  1137. local Animate = game.Players.LocalPlayer.Character.Animate
  1138.  
  1139. AnimationChanger.Name = "AnimationChanger"
  1140. AnimationChanger.Parent = game:WaitForChild("CoreGui")
  1141. AnimationChanger.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  1142.  
  1143. Main.Name = "Main"
  1144. Main.Parent = AnimationChanger
  1145. Main.BackgroundColor3 = Color3.new(0.278431, 0.278431, 0.278431)
  1146. Main.BorderSizePixel = 0
  1147. Main.Position = UDim2.new(0.421999991, 0, -1, 0)
  1148. Main.Size = UDim2.new(0, 300, 0, 250)
  1149. Main.Active = true
  1150. Main.Draggable = true
  1151.  
  1152. TopBar.Name = "TopBar"
  1153. TopBar.Parent = Main
  1154. TopBar.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1155. TopBar.BorderSizePixel = 0
  1156. TopBar.Size = UDim2.new(0, 300, 0, 30)
  1157.  
  1158. Close.Name = "Close"
  1159. Close.Parent = TopBar
  1160. Close.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1161. Close.BorderSizePixel = 0
  1162. Close.Position = UDim2.new(0.899999976, 0, 0, 0)
  1163. Close.Size = UDim2.new(0, 30, 0, 30)
  1164. Close.Font = Enum.Font.SciFi
  1165. Close.Text = "x"
  1166. Close.TextColor3 = Color3.new(1, 0, 0.0156863)
  1167. Close.TextSize = 20
  1168. Close.MouseButton1Click:Connect(function()
  1169. wait(0.3)
  1170. Main:TweenPosition(UDim2.new(0.421999991, 0, -1.28400004, 0))
  1171. wait(3)
  1172. AnimationChanger:Destroy()
  1173. end)
  1174.  
  1175. TextLabel.Parent = TopBar
  1176. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  1177. TextLabel.BackgroundTransparency = 1
  1178. TextLabel.BorderSizePixel = 0
  1179. TextLabel.Position = UDim2.new(0, 0, 0.600000024, 0)
  1180. TextLabel.Size = UDim2.new(0, 270, 0, 10)
  1181. TextLabel.Font = Enum.Font.SourceSans
  1182. TextLabel.Text = "Made by Nyser#4623"
  1183. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  1184. TextLabel.TextSize = 15
  1185.  
  1186. TextLabel_2.Parent = TopBar
  1187. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1188. TextLabel_2.BackgroundTransparency = 1
  1189. TextLabel_2.BorderSizePixel = 0
  1190. TextLabel_2.Position = UDim2.new(0, 0, -0.0266667679, 0)
  1191. TextLabel_2.Size = UDim2.new(0, 270, 0, 20)
  1192. TextLabel_2.Font = Enum.Font.SourceSans
  1193. TextLabel_2.Text = "Animation Changer"
  1194. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  1195. TextLabel_2.TextSize = 20
  1196.  
  1197. NormalTab.Name = "NormalTab"
  1198. NormalTab.Parent = Main
  1199. NormalTab.BackgroundColor3 = Color3.new(0.278431, 0.278431, 0.278431)
  1200. NormalTab.BackgroundTransparency = 1
  1201. NormalTab.BorderSizePixel = 0
  1202. NormalTab.Position = UDim2.new(0.5, 0, 0.119999997, 0)
  1203. NormalTab.Size = UDim2.new(0, 150, 0, 500)
  1204.  
  1205. A_Astronaut.Name = "A_Astronaut"
  1206. A_Astronaut.Parent = NormalTab
  1207. A_Astronaut.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1208. A_Astronaut.BorderSizePixel = 0
  1209. A_Astronaut.Position = UDim2.new(0, 0, 0.815764725, 0)
  1210. A_Astronaut.Size = UDim2.new(0, 150, 0, 30)
  1211. A_Astronaut.Font = Enum.Font.SciFi
  1212. A_Astronaut.Text = "Astronaut"
  1213. A_Astronaut.TextColor3 = Color3.new(1, 1, 1)
  1214. A_Astronaut.TextSize = 20
  1215. A_Astronaut.MouseButton1Click:Connect(function()
  1216. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=891621366"
  1217. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=891633237"
  1218. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=891667138"
  1219. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=891636393"
  1220. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=891627522"
  1221. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=891609353"
  1222. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=891617961"
  1223. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1224. end)
  1225.  
  1226. A_Bubbly.Name = "A_Bubbly"
  1227. A_Bubbly.Parent = NormalTab
  1228. A_Bubbly.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1229. A_Bubbly.BorderSizePixel = 0
  1230. A_Bubbly.Position = UDim2.new(0, 0, 0.349019617, 0)
  1231. A_Bubbly.Size = UDim2.new(0, 150, 0, 30)
  1232. A_Bubbly.Font = Enum.Font.SciFi
  1233. A_Bubbly.Text = "Bubbly"
  1234. A_Bubbly.TextColor3 = Color3.new(1, 1, 1)
  1235. A_Bubbly.TextSize = 20
  1236. A_Bubbly.MouseButton1Click:Connect(function()
  1237. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=910004836"
  1238. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=910009958"
  1239. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=910034870"
  1240. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=910025107"
  1241. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=910016857"
  1242. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=910001910"
  1243. Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=910030921"
  1244. Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=910028158"
  1245. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1246. end)
  1247.  
  1248. A_Cartoony.Name = "A_Cartoony"
  1249. A_Cartoony.Parent = NormalTab
  1250. A_Cartoony.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1251. A_Cartoony.BorderSizePixel = 0
  1252. A_Cartoony.Position = UDim2.new(0, 0, 0.407272667, 0)
  1253. A_Cartoony.Size = UDim2.new(0, 150, 0, 30)
  1254. A_Cartoony.Font = Enum.Font.SciFi
  1255. A_Cartoony.Text = "Cartoony"
  1256. A_Cartoony.TextColor3 = Color3.new(1, 1, 1)
  1257. A_Cartoony.TextSize = 20
  1258. A_Cartoony.MouseButton1Click:Connect(function()
  1259. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=742637544"
  1260. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=742638445"
  1261. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=742640026"
  1262. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=742638842"
  1263. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=742637942"
  1264. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=742636889"
  1265. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=742637151"
  1266. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1267. end)
  1268.  
  1269. A_Elder.Name = "A_Elder"
  1270. A_Elder.Parent = NormalTab
  1271. A_Elder.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1272. A_Elder.BorderSizePixel = 0
  1273. A_Elder.Position = UDim2.new(6.51925802e-09, 0, 0.636310041, 0)
  1274. A_Elder.Size = UDim2.new(0, 150, 0, 30)
  1275. A_Elder.Font = Enum.Font.SciFi
  1276. A_Elder.Text = "Elder"
  1277. A_Elder.TextColor3 = Color3.new(1, 1, 1)
  1278. A_Elder.TextSize = 20
  1279. A_Elder.MouseButton1Click:Connect(function()
  1280. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=845397899"
  1281. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=845400520"
  1282. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=845403856"
  1283. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=845386501"
  1284. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=845398858"
  1285. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=845392038"
  1286. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=845396048"
  1287. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1288. end)
  1289.  
  1290. A_Knight.Name = "A_Knight"
  1291. A_Knight.Parent = NormalTab
  1292. A_Knight.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1293. A_Knight.BorderSizePixel = 0
  1294. A_Knight.Position = UDim2.new(0, 0, 0.52352941, 0)
  1295. A_Knight.Size = UDim2.new(0, 150, 0, 30)
  1296. A_Knight.Font = Enum.Font.SciFi
  1297. A_Knight.Text = "Knight"
  1298. A_Knight.TextColor3 = Color3.new(1, 1, 1)
  1299. A_Knight.TextSize = 20
  1300. A_Knight.MouseButton1Click:Connect(function()
  1301. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=657595757"
  1302. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=657568135"
  1303. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=657552124"
  1304. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=657564596"
  1305. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=658409194"
  1306. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=658360781"
  1307. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=657600338"
  1308. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1309. end)
  1310.  
  1311. A_Levitation.Name = "A_Levitation"
  1312. A_Levitation.Parent = NormalTab
  1313. A_Levitation.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1314. A_Levitation.BorderSizePixel = 0
  1315. A_Levitation.Position = UDim2.new(0, 0, 0.115472436, 0)
  1316. A_Levitation.Size = UDim2.new(0, 150, 0, 30)
  1317. A_Levitation.Font = Enum.Font.SciFi
  1318. A_Levitation.Text = "Levitation"
  1319. A_Levitation.TextColor3 = Color3.new(1, 1, 1)
  1320. A_Levitation.TextSize = 20
  1321. A_Levitation.MouseButton1Click:Connect(function()
  1322. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616006778"
  1323. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616008087"
  1324. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616013216"
  1325. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616010382"
  1326. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616008936"
  1327. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616003713"
  1328. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616005863"
  1329. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1330. end)
  1331.  
  1332. A_Mage.Name = "A_Mage"
  1333. A_Mage.Parent = NormalTab
  1334. A_Mage.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1335. A_Mage.BorderSizePixel = 0
  1336. A_Mage.Position = UDim2.new(0, 0, 0.696203232, 0)
  1337. A_Mage.Size = UDim2.new(0, 150, 0, 30)
  1338. A_Mage.Font = Enum.Font.SciFi
  1339. A_Mage.Text = "Mage"
  1340. A_Mage.TextColor3 = Color3.new(1, 1, 1)
  1341. A_Mage.TextSize = 20
  1342. A_Mage.MouseButton1Click:Connect(function()
  1343. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=707742142"
  1344. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=707855907"
  1345. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=707897309"
  1346. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=707861613"
  1347. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=707853694"
  1348. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=707826056"
  1349. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=707829716"
  1350. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1351. end)
  1352.  
  1353. A_Ninja.Name = "A_Ninja"
  1354. A_Ninja.Parent = NormalTab
  1355. A_Ninja.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1356. A_Ninja.BorderSizePixel = 0
  1357. A_Ninja.Position = UDim2.new(0, 0, 0.0597896464, 0)
  1358. A_Ninja.Size = UDim2.new(0, 150, 0, 30)
  1359. A_Ninja.Font = Enum.Font.SciFi
  1360. A_Ninja.Text = "Ninja"
  1361. A_Ninja.TextColor3 = Color3.new(1, 1, 1)
  1362. A_Ninja.TextSize = 20
  1363. A_Ninja.MouseButton1Click:Connect(function()
  1364. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=656117400"
  1365. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=656118341"
  1366. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=656121766"
  1367. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=656118852"
  1368. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=656117878"
  1369. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=656114359"
  1370. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=656115606"
  1371. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1372. end)
  1373.  
  1374. A_Pirate.Name = "A_Pirate"
  1375. A_Pirate.Parent = NormalTab
  1376. A_Pirate.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1377. A_Pirate.BorderSizePixel = 0
  1378. A_Pirate.Position = UDim2.new(-0.000333309174, 0, 0.874588311, 0)
  1379. A_Pirate.Size = UDim2.new(0, 150, 0, 30)
  1380. A_Pirate.Font = Enum.Font.SciFi
  1381. A_Pirate.Text = "Pirate"
  1382. A_Pirate.TextColor3 = Color3.new(1, 1, 1)
  1383. A_Pirate.TextSize = 20
  1384. A_Pirate.MouseButton1Click:Connect(function()
  1385. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=750781874"
  1386. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=750782770"
  1387. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=750785693"
  1388. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=750783738"
  1389. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=750782230"
  1390. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=750779899"
  1391. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=750780242"
  1392. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1393. end)
  1394.  
  1395. A_Robot.Name = "A_Robot"
  1396. A_Robot.Parent = NormalTab
  1397. A_Robot.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1398. A_Robot.BorderSizePixel = 0
  1399. A_Robot.Position = UDim2.new(0, 0, 0.291479498, 0)
  1400. A_Robot.Size = UDim2.new(0, 150, 0, 30)
  1401. A_Robot.Font = Enum.Font.SciFi
  1402. A_Robot.Text = "Robot"
  1403. A_Robot.TextColor3 = Color3.new(1, 1, 1)
  1404. A_Robot.TextSize = 20
  1405. A_Robot.MouseButton1Click:Connect(function()
  1406. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616088211"
  1407. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616089559"
  1408. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616095330"
  1409. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616091570"
  1410. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616090535"
  1411. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616086039"
  1412. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616087089"
  1413. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1414. end)
  1415.  
  1416. A_Stylish.Name = "A_Stylish"
  1417. A_Stylish.Parent = NormalTab
  1418. A_Stylish.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1419. A_Stylish.BorderSizePixel = 0
  1420. A_Stylish.Position = UDim2.new(0, 0, 0.232816339, 0)
  1421. A_Stylish.Size = UDim2.new(0, 150, 0, 30)
  1422. A_Stylish.Font = Enum.Font.SciFi
  1423. A_Stylish.Text = "Stylish"
  1424. A_Stylish.TextColor3 = Color3.new(1, 1, 1)
  1425. A_Stylish.TextSize = 20
  1426. A_Stylish.MouseButton1Click:Connect(function()
  1427. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616136790"
  1428. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616138447"
  1429. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616146177"
  1430. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616140816"
  1431. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616139451"
  1432. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616133594"
  1433. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616134815"
  1434. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1435. end)
  1436.  
  1437. A_SuperHero.Name = "A_SuperHero"
  1438. A_SuperHero.Parent = NormalTab
  1439. A_SuperHero.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1440. A_SuperHero.BorderSizePixel = 0
  1441. A_SuperHero.Position = UDim2.new(0, 0, 0.464919746, 0)
  1442. A_SuperHero.Size = UDim2.new(0, 150, 0, 30)
  1443. A_SuperHero.Font = Enum.Font.SciFi
  1444. A_SuperHero.Text = "SuperHero"
  1445. A_SuperHero.TextColor3 = Color3.new(1, 1, 1)
  1446. A_SuperHero.TextSize = 20
  1447. A_SuperHero.MouseButton1Click:Connect(function()
  1448. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616111295"
  1449. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616113536"
  1450. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616122287"
  1451. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616117076"
  1452. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616115533"
  1453. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616104706"
  1454. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616108001"
  1455. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1456. end)
  1457.  
  1458. A_Toy.Name = "A_Toy"
  1459. A_Toy.Parent = NormalTab
  1460. A_Toy.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1461. A_Toy.BorderSizePixel = 0
  1462. A_Toy.Position = UDim2.new(6.51925802e-09, 0, 0.756028414, 0)
  1463. A_Toy.Size = UDim2.new(0, 150, 0, 30)
  1464. A_Toy.Font = Enum.Font.SciFi
  1465. A_Toy.Text = "Toy"
  1466. A_Toy.TextColor3 = Color3.new(1, 1, 1)
  1467. A_Toy.TextSize = 20
  1468. A_Toy.MouseButton1Click:Connect(function()
  1469. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=782841498"
  1470. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=782845736"
  1471. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=782843345"
  1472. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=782842708"
  1473. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=782847020"
  1474. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=782843869"
  1475. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=782846423"
  1476. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1477. end)
  1478.  
  1479. A_Vampire.Name = "A_Vampire"
  1480. A_Vampire.Parent = NormalTab
  1481. A_Vampire.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1482. A_Vampire.BorderSizePixel = 0
  1483. A_Vampire.Position = UDim2.new(0, 0, 0.934021354, 0)
  1484. A_Vampire.Size = UDim2.new(0, 150, 0, 30)
  1485. A_Vampire.Font = Enum.Font.SciFi
  1486. A_Vampire.Text = "Vampire"
  1487. A_Vampire.TextColor3 = Color3.new(1, 1, 1)
  1488. A_Vampire.TextSize = 20
  1489. A_Vampire.MouseButton1Click:Connect(function()
  1490. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083445855"
  1491. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083450166"
  1492. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083473930"
  1493. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083462077"
  1494. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083455352"
  1495. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083439238"
  1496. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083443587"
  1497. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1498. end)
  1499.  
  1500. A_Werewolf.Name = "A_Werewolf"
  1501. A_Werewolf.Parent = NormalTab
  1502. A_Werewolf.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1503. A_Werewolf.BorderSizePixel = 0
  1504. A_Werewolf.Position = UDim2.new(-0.000333368778, 0, 0.174509808, 0)
  1505. A_Werewolf.Size = UDim2.new(0, 150, 0, 30)
  1506. A_Werewolf.Font = Enum.Font.SciFi
  1507. A_Werewolf.Text = "Werewolf"
  1508. A_Werewolf.TextColor3 = Color3.new(1, 1, 1)
  1509. A_Werewolf.TextSize = 20
  1510. A_Werewolf.MouseButton1Click:Connect(function()
  1511. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083195517"
  1512. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083214717"
  1513. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083178339"
  1514. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083216690"
  1515. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083218792"
  1516. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083182000"
  1517. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083189019"
  1518. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1519. end)
  1520.  
  1521. A_Zombie.Name = "A_Zombie"
  1522. A_Zombie.Parent = NormalTab
  1523. A_Zombie.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1524. A_Zombie.BorderSizePixel = 0
  1525. A_Zombie.Position = UDim2.new(-1.1920929e-07, 0, 0.582352936, 0)
  1526. A_Zombie.Size = UDim2.new(0, 150, 0, 30)
  1527. A_Zombie.Font = Enum.Font.SciFi
  1528. A_Zombie.Text = "Zombie"
  1529. A_Zombie.TextColor3 = Color3.new(1, 1, 1)
  1530. A_Zombie.TextSize = 20
  1531. A_Zombie.MouseButton1Click:Connect(function()
  1532. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616158929"
  1533. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616160636"
  1534. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616168032"
  1535. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616163682"
  1536. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616161997"
  1537. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616156119"
  1538. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616157476"
  1539. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1540. end)
  1541.  
  1542. Category.Name = "Category"
  1543. Category.Parent = NormalTab
  1544. Category.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  1545. Category.BorderSizePixel = 0
  1546. Category.Size = UDim2.new(0, 150, 0, 30)
  1547. Category.Text = "Normal"
  1548. Category.TextColor3 = Color3.new(0, 0.835294, 1)
  1549. Category.TextSize = 14
  1550.  
  1551. SpecialTab.Name = "SpecialTab"
  1552. SpecialTab.Parent = Main
  1553. SpecialTab.BackgroundColor3 = Color3.new(0.278431, 0.278431, 0.278431)
  1554. SpecialTab.BackgroundTransparency = 1
  1555. SpecialTab.BorderSizePixel = 0
  1556. SpecialTab.Position = UDim2.new(0, 0, 0.119999997, 0)
  1557. SpecialTab.Size = UDim2.new(0, 150, 0, 230)
  1558.  
  1559. A_Patrol.Name = "A_Patrol"
  1560. A_Patrol.Parent = SpecialTab
  1561. A_Patrol.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1562. A_Patrol.BorderSizePixel = 0
  1563. A_Patrol.Position = UDim2.new(0, 0, 0.259960413, 0)
  1564. A_Patrol.Size = UDim2.new(0, 150, 0, 30)
  1565. A_Patrol.Font = Enum.Font.SciFi
  1566. A_Patrol.Text = "Patrol"
  1567. A_Patrol.TextColor3 = Color3.new(1, 1, 1)
  1568. A_Patrol.TextSize = 20
  1569. A_Patrol.MouseButton1Click:Connect(function()
  1570. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1149612882"
  1571. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1150842221"
  1572. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1151231493"
  1573. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1150967949"
  1574. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1148811837"
  1575. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1148811837"
  1576. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1148863382"
  1577. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1578. end)
  1579.  
  1580. A_Confident.Name = "A_Confident"
  1581. A_Confident.Parent = SpecialTab
  1582. A_Confident.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1583. A_Confident.BorderSizePixel = 0
  1584. A_Confident.Position = UDim2.new(0, 0, 0.389248967, 0)
  1585. A_Confident.Size = UDim2.new(0, 150, 0, 30)
  1586. A_Confident.Font = Enum.Font.SciFi
  1587. A_Confident.Text = "Confident"
  1588. A_Confident.TextColor3 = Color3.new(1, 1, 1)
  1589. A_Confident.TextSize = 20
  1590. A_Confident.MouseButton1Click:Connect(function()
  1591. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1069977950"
  1592. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1069987858"
  1593. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1070017263"
  1594. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1070001516"
  1595. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1069984524"
  1596. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1069946257"
  1597. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1069973677"
  1598. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1599. end)
  1600.  
  1601. A_Popstar.Name = "A_Popstar"
  1602. A_Popstar.Parent = SpecialTab
  1603. A_Popstar.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1604. A_Popstar.BorderSizePixel = 0
  1605. A_Popstar.Position = UDim2.new(0, 0, 0.130671918, 0)
  1606. A_Popstar.Size = UDim2.new(0, 150, 0, 30)
  1607. A_Popstar.Font = Enum.Font.SciFi
  1608. A_Popstar.Text = "Popstar"
  1609. A_Popstar.TextColor3 = Color3.new(1, 1, 1)
  1610. A_Popstar.TextSize = 20
  1611. A_Popstar.MouseButton1Click:Connect(function()
  1612. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1212900985"
  1613. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1150842221"
  1614. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1212980338"
  1615. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1212980348"
  1616. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1212954642"
  1617. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1213044953"
  1618. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1212900995"
  1619. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1620. end)
  1621.  
  1622. A_Cowboy.Name = "A_Cowboy"
  1623. A_Cowboy.Parent = SpecialTab
  1624. A_Cowboy.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1625. A_Cowboy.BorderSizePixel = 0
  1626. A_Cowboy.Position = UDim2.new(0, 0, 0.772964239, 0)
  1627. A_Cowboy.Size = UDim2.new(0, 150, 0, 30)
  1628. A_Cowboy.Font = Enum.Font.SciFi
  1629. A_Cowboy.Text = "Cowboy"
  1630. A_Cowboy.TextColor3 = Color3.new(1, 1, 1)
  1631. A_Cowboy.TextSize = 20
  1632. A_Cowboy.MouseButton1Click:Connect(function()
  1633. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1014390418"
  1634. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1014398616"
  1635. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1014421541"
  1636. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1014401683"
  1637. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1014394726"
  1638. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1014380606"
  1639. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1014384571"
  1640. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1641. end)
  1642.  
  1643. A_Ghost.Name = "A_Ghost"
  1644. A_Ghost.Parent = SpecialTab
  1645. A_Ghost.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1646. A_Ghost.BorderSizePixel = 0
  1647. A_Ghost.Position = UDim2.new(0, 0, 0.900632322, 0)
  1648. A_Ghost.Size = UDim2.new(0, 150, 0, 30)
  1649. A_Ghost.Font = Enum.Font.SciFi
  1650. A_Ghost.Text = "Ghost"
  1651. A_Ghost.TextColor3 = Color3.new(1, 1, 1)
  1652. A_Ghost.TextSize = 20
  1653. A_Ghost.MouseButton1Click:Connect(function()
  1654. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616006778"
  1655. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616008087"
  1656. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616013216"
  1657. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616013216"
  1658. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616008936"
  1659. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616005863"
  1660. Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616012453"
  1661. Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616011509"
  1662. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1663. end)
  1664.  
  1665. A_Sneaky.Name = "A_Sneaky"
  1666. A_Sneaky.Parent = SpecialTab
  1667. A_Sneaky.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1668. A_Sneaky.BorderSizePixel = 0
  1669. A_Sneaky.Position = UDim2.new(0, 0, 0.517628431, 0)
  1670. A_Sneaky.Size = UDim2.new(0, 150, 0, 30)
  1671. A_Sneaky.Font = Enum.Font.SciFi
  1672. A_Sneaky.Text = "Sneaky"
  1673. A_Sneaky.TextColor3 = Color3.new(1, 1, 1)
  1674. A_Sneaky.TextSize = 20
  1675. A_Sneaky.MouseButton1Click:Connect(function()
  1676. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1132473842"
  1677. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1132477671"
  1678. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1132510133"
  1679. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1132494274"
  1680. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1132489853"
  1681. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1132461372"
  1682. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1132469004"
  1683. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1684. end)
  1685.  
  1686. A_Princess.Name = "A_Princess"
  1687. A_Princess.Parent = SpecialTab
  1688. A_Princess.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1689. A_Princess.BorderSizePixel = 0
  1690. A_Princess.Position = UDim2.new(0, 0, 0.645296335, 0)
  1691. A_Princess.Size = UDim2.new(0, 150, 0, 30)
  1692. A_Princess.Font = Enum.Font.SciFi
  1693. A_Princess.Text = "Princess"
  1694. A_Princess.TextColor3 = Color3.new(1, 1, 1)
  1695. A_Princess.TextSize = 20
  1696. A_Princess.MouseButton1Click:Connect(function()
  1697. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=941003647"
  1698. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=941013098"
  1699. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=941028902"
  1700. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=941015281"
  1701. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=941008832"
  1702. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=940996062"
  1703. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=941000007"
  1704. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1705. end)
  1706.  
  1707. Category_2.Name = "Category"
  1708. Category_2.Parent = SpecialTab
  1709. Category_2.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  1710. Category_2.BorderSizePixel = 0
  1711. Category_2.Size = UDim2.new(0, 150, 0, 30)
  1712. Category_2.Text = "Special"
  1713. Category_2.TextColor3 = Color3.new(0, 0.835294, 1)
  1714. Category_2.TextSize = 14
  1715.  
  1716. OtherTab.Name = "OtherTab"
  1717. OtherTab.Parent = Main
  1718. OtherTab.BackgroundColor3 = Color3.new(0.278431, 0.278431, 0.278431)
  1719. OtherTab.BackgroundTransparency = 1
  1720. OtherTab.BorderSizePixel = 0
  1721. OtherTab.Position = UDim2.new(0, 0, 1.06800008, 0)
  1722. OtherTab.Size = UDim2.new(0, 150, 0, 220)
  1723.  
  1724. Category_3.Name = "Category"
  1725. Category_3.Parent = OtherTab
  1726. Category_3.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  1727. Category_3.BorderSizePixel = 0
  1728. Category_3.Size = UDim2.new(0, 150, 0, 30)
  1729. Category_3.Text = "Other"
  1730. Category_3.TextColor3 = Color3.new(0, 0.835294, 1)
  1731. Category_3.TextSize = 14
  1732.  
  1733. A_None.Name = "A_None"
  1734. A_None.Parent = OtherTab
  1735. A_None.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1736. A_None.BorderSizePixel = 0
  1737. A_None.Position = UDim2.new(0, 0, 0.134545445, 0)
  1738. A_None.Size = UDim2.new(0, 150, 0, 30)
  1739. A_None.Font = Enum.Font.SciFi
  1740. A_None.Text = "None"
  1741. A_None.TextColor3 = Color3.new(1, 1, 1)
  1742. A_None.TextSize = 20
  1743. A_None.MouseButton1Click:Connect(function()
  1744. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=0"
  1745. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=0"
  1746. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=0"
  1747. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=0"
  1748. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=0"
  1749. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=0"
  1750. Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=0"
  1751. Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=0"
  1752. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1753. end)
  1754.  
  1755. A_Anthro.Name = "A_Anthro"
  1756. A_Anthro.Parent = OtherTab
  1757. A_Anthro.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1758. A_Anthro.BorderSizePixel = 0
  1759. A_Anthro.Position = UDim2.new(0, 0, 0.269090891, 0)
  1760. A_Anthro.Size = UDim2.new(0, 150, 0, 30)
  1761. A_Anthro.Font = Enum.Font.SciFi
  1762. A_Anthro.Text = "Anthro (Default)"
  1763. A_Anthro.TextColor3 = Color3.new(1, 1, 1)
  1764. A_Anthro.TextSize = 20
  1765. A_Anthro.MouseButton1Click:Connect(function()
  1766. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=2510196951"
  1767. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=2510197257"
  1768. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=2510202577"
  1769. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=2510198475"
  1770. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=2510197830"
  1771. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=2510192778"
  1772. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=2510195892"
  1773. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  1774. end)
  1775.  
  1776. wait(1)
  1777. Main:TweenPosition(UDim2.new(0.421999991, 0, 0.28400004, 0))
  1778. end,
  1779. })
Add Comment
Please, Sign In to add comment