Advertisement
sam15124

Untitled

Feb 3rd, 2024
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 374.30 KB | None | 0 0
  1. repeat wait() until game:IsLoaded()
  2. repeat wait() until game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") ~= nil
  3. do local ui = game:GetService("CoreGui"):FindFirstChild("redui") if ui then ui:Destroy() end end
  4.  
  5. local UserInputService = game:GetService("UserInputService")
  6. local TweenService = game:GetService("TweenService")
  7. local RunService = game:GetService("RunService")
  8. local LocalPlayer = game:GetService("Players").LocalPlayer
  9. local Mouse = LocalPlayer:GetMouse()
  10. local tween = game:GetService("TweenService")
  11. local Red = {RainbowColorValue = 0, HueSelectionPosition = 0}
  12. local PresetColor = Color3.fromRGB(66, 134, 255)
  13.  
  14.  
  15. coroutine.wrap(
  16. function()
  17. while wait() do
  18. Red.RainbowColorValue = Red.RainbowColorValue + 1 / 255
  19. Red.HueSelectionPosition = Red.HueSelectionPosition + 1
  20.  
  21. if Red.RainbowColorValue >= 1 then
  22. Red.RainbowColorValue = 0
  23. end
  24.  
  25. if Red.HueSelectionPosition == 160 then
  26. Red.HueSelectionPosition = 0
  27. end
  28. end
  29. end
  30. )()
  31.  
  32. local Reduisceen = Instance.new("ScreenGui")
  33. Reduisceen.Parent = game:GetService("CoreGui")
  34. Reduisceen.Name = "redui"
  35. Reduisceen.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  36. game.Players.LocalPlayer.Chatted:Connect(function(msg)
  37. if msg == "n" then
  38. game.CoreGui["redui"].Enabled = not game.CoreGui["redui"].Enabled
  39. end
  40. end)
  41.  
  42.  
  43.  
  44. local function MakeDraggable(topbarobject, object)
  45. local Dragging = nil
  46. local DragInput = nil
  47. local DragStart = nil
  48. local StartPosition = nil
  49.  
  50. local function Update(input)
  51. local Delta = input.Position - DragStart
  52. local pos =
  53. UDim2.new(
  54. StartPosition.X.Scale,
  55. StartPosition.X.Offset + Delta.X,
  56. StartPosition.Y.Scale,
  57. StartPosition.Y.Offset + Delta.Y
  58. )
  59. local Tween = TweenService:Create(object, TweenInfo.new(0.2), {Position = pos})
  60. Tween:Play()
  61. end
  62.  
  63. topbarobject.InputBegan:Connect(
  64. function(input)
  65. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  66. Dragging = true
  67. DragStart = input.Position
  68. StartPosition = object.Position
  69.  
  70. input.Changed:Connect(
  71. function()
  72. if input.UserInputState == Enum.UserInputState.End then
  73. Dragging = false
  74. end
  75. end
  76. )
  77. end
  78. end
  79. )
  80.  
  81. topbarobject.InputChanged:Connect(
  82. function(input)
  83. if
  84. input.UserInputType == Enum.UserInputType.MouseMovement or
  85. input.UserInputType == Enum.UserInputType.Touch
  86. then
  87. DragInput = input
  88. end
  89. end
  90. )
  91.  
  92. UserInputService.InputChanged:Connect(
  93. function(input)
  94. if input == DragInput and Dragging then
  95. Update(input)
  96. end
  97. end
  98. )
  99. end
  100.  
  101. local function Tween(instance, properties,style,wa)
  102. if style == nil or "" then
  103. return Back
  104. end
  105. tween:Create(instance,TweenInfo.new(wa,Enum.EasingStyle[style]),{properties}):Play()
  106. end
  107.  
  108. local create = {}
  109. function create:Win(text)
  110. local fs = false
  111.  
  112. local MainSceen = Instance.new("Frame")
  113. MainSceen.Name = "MainSceen"
  114. MainSceen.Parent = Reduisceen
  115. MainSceen.AnchorPoint = Vector2.new(0.5, 0.5)
  116. MainSceen.BackgroundColor3 = Color3.fromRGB(15,15,15)
  117. MainSceen.BorderSizePixel = 0
  118. MainSceen.Position = UDim2.new(0.5, 0, 0.5, 0)
  119. MainSceen.Size = UDim2.new(0, 0, 0, 0)
  120. MainSceen.ClipsDescendants = true
  121.  
  122. local Main_UiConner = Instance.new("UICorner")
  123.  
  124. Main_UiConner.CornerRadius = UDim.new(0, 4)
  125. Main_UiConner.Name = "Main_UiConner"
  126. Main_UiConner.Parent = MainSceen
  127.  
  128. local ClickFrame = Instance.new("Frame")
  129. ClickFrame.Name = "ClickFrame"
  130. ClickFrame.Parent = MainSceen
  131. ClickFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  132. ClickFrame.BackgroundColor3 = Color3.fromRGB(255,255,255)
  133. ClickFrame.BorderSizePixel = 0
  134. ClickFrame.Position = UDim2.new(0.5, 0, 0.036, 0)
  135. ClickFrame.Size = UDim2.new(0, 534-20, 0, 30)
  136. ClickFrame.ClipsDescendants = true
  137. ClickFrame.BackgroundTransparency = 1
  138.  
  139. MakeDraggable(ClickFrame,MainSceen)
  140. tween:Create(MainSceen,TweenInfo.new(0.4,Enum.EasingStyle.Back),{Size = UDim2.new(0, 550, 0, 474)}):Play()
  141.  
  142. local library = {toggledui = false;}
  143. game:GetService("UserInputService").InputBegan:Connect(function(input)
  144. pcall(function()
  145. if input.KeyCode == Enum.KeyCode.RightControl then
  146. if library.toggledui == false then
  147. library.toggledui = true
  148. tween:Create(MainSceen,TweenInfo.new(0.4,Enum.EasingStyle.Back,Enum.EasingDirection.In),{Size = UDim2.new(0, 0, 0, 0)}):Play()
  149. wait(.3)
  150. Reduisceen.Enabled = false
  151. else
  152. library.toggledui = false
  153. tween:Create(MainSceen,TweenInfo.new(0.4,Enum.EasingStyle.Back),{Size = UDim2.new(0, 534, 0, 474)}):Play()
  154. Reduisceen.Enabled = true
  155. end
  156. end
  157. end)
  158. end)
  159.  
  160. local NameReal = Instance.new("TextLabel")
  161.  
  162. NameReal.Parent = MainSceen
  163. NameReal.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  164. NameReal.BackgroundTransparency = 1
  165. NameReal.BorderSizePixel = 0
  166. NameReal.Position = UDim2.new(0.5, 0, 0.05, 0)
  167. NameReal.AnchorPoint = Vector2.new(0.5, 0.5)
  168. NameReal.Size = UDim2.new(0, 136, 0, 34)
  169. NameReal.Font = Enum.Font.GothamBold
  170. NameReal.Text = tostring(text)
  171. NameReal.TextColor3 = Color3.fromRGB(255, 255, 255)
  172. NameReal.TextSize = 14.000
  173.  
  174.  
  175. local MainSceen2 = Instance.new("Frame")
  176. MainSceen2.Name = "MainSceen2"
  177. MainSceen2.Parent = MainSceen
  178. MainSceen2.AnchorPoint = Vector2.new(0.5, 0.5)
  179. MainSceen2.BackgroundColor3 = Color3.fromRGB(18,18,18)
  180. MainSceen2.BorderSizePixel = 0
  181. MainSceen2.Position = UDim2.new(0.5, 0, 0.5, 0)
  182. MainSceen2.Size = UDim2.new(0, 0, 0, 0)
  183. MainSceen2.ClipsDescendants = true
  184.  
  185. local Main_UiConner2 = Instance.new("UICorner")
  186.  
  187. Main_UiConner2.CornerRadius = UDim.new(0, 4)
  188. Main_UiConner2.Name = "Main_UiConner"
  189. Main_UiConner2.Parent = MainSceen
  190.  
  191. MainSceen2:TweenSizeAndPosition(UDim2.new(0, 550-20, 0, 474-50), UDim2.new(0.5, 0, 0.53, 0), "Out", "Back", 0.5, true)
  192.  
  193.  
  194. local ScolTapBarFrame = Instance.new("Frame")
  195. ScolTapBarFrame.Name = "MainSceen2"
  196. ScolTapBarFrame.Parent = MainSceen2
  197. ScolTapBarFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  198. ScolTapBarFrame.BackgroundColor3 = Color3.fromRGB(255,255,255)
  199. ScolTapBarFrame.BorderSizePixel = 0
  200. ScolTapBarFrame.BackgroundTransparency = 1
  201. ScolTapBarFrame.Position = UDim2.new(0.5, 0, 0.07, 0)
  202. ScolTapBarFrame.Size = UDim2.new(0, 500, 0, 35)
  203. ScolTapBarFrame.ClipsDescendants = true
  204.  
  205. local ScrollingFrame_Menubar = Instance.new("ScrollingFrame")
  206.  
  207. ScrollingFrame_Menubar.Parent = ScolTapBarFrame
  208. ScrollingFrame_Menubar.Active = true
  209. ScrollingFrame_Menubar.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  210. ScrollingFrame_Menubar.BackgroundTransparency = 1
  211. ScrollingFrame_Menubar.BorderSizePixel = 0
  212. ScrollingFrame_Menubar.Size = UDim2.new(0, 500, 0, 35)
  213. ScrollingFrame_Menubar.CanvasSize = UDim2.new(2, 0, 0, 0)
  214. ScrollingFrame_Menubar.ScrollBarImageColor3 = Color3.fromRGB(255, 255, 255)
  215. ScrollingFrame_Menubar.ScrollBarThickness = 3
  216.  
  217.  
  218. local UIListLayout_Menubar = Instance.new("UIListLayout")
  219.  
  220. UIListLayout_Menubar.Parent = ScrollingFrame_Menubar
  221. UIListLayout_Menubar.FillDirection = Enum.FillDirection.Horizontal
  222. UIListLayout_Menubar.SortOrder = Enum.SortOrder.LayoutOrder
  223. UIListLayout_Menubar.Padding = UDim.new(0, 10)
  224.  
  225. local UIPadding_Menubar = Instance.new("UIPadding")
  226.  
  227. UIPadding_Menubar.Parent = ScrollingFrame_Menubar
  228. UIPadding_Menubar.PaddingTop = UDim.new(0, 2)
  229.  
  230.  
  231. local PageOrders = -1
  232.  
  233. local Container_Page = Instance.new('Frame',MainSceen2)
  234. Container_Page.Size = UDim2.new(0, 518, 0, 268)
  235. Container_Page.Position = UDim2.new(0.5, 0, 0.45, 0)
  236. Container_Page.BackgroundTransparency = 1
  237. Container_Page.Name = "Page "
  238. Container_Page.AnchorPoint = Vector2.new(0.5, 0.5)
  239.  
  240. local pagesFolder = Instance.new("Folder")
  241.  
  242. pagesFolder.Name = "pagesFolder"
  243. pagesFolder.Parent = Container_Page
  244.  
  245.  
  246. local UIPage = Instance.new('UIPageLayout',pagesFolder)
  247. UIPage.SortOrder = Enum.SortOrder.LayoutOrder
  248. UIPage.EasingDirection = Enum.EasingDirection.InOut
  249. UIPage.EasingStyle = Enum.EasingStyle.Quad
  250. UIPage.Padding = UDim.new(0, 10)
  251. UIPage.TweenTime = 0.500
  252.  
  253. local top = {}
  254.  
  255. local NotiFrame = Instance.new("Frame")
  256. NotiFrame.Name = "NotiFrame"
  257. NotiFrame.Parent = Reduisceen
  258. NotiFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  259. NotiFrame.BackgroundColor3 = Color3.fromRGB(18,18,18)
  260. NotiFrame.BorderSizePixel = 0
  261. NotiFrame.Position = UDim2.new(1, -210, 1, -500)
  262. NotiFrame.Size = UDim2.new(0, 400, 0, 500)
  263. NotiFrame.ClipsDescendants = true
  264. NotiFrame.BackgroundTransparency = 1
  265.  
  266.  
  267. local Notilistlayout = Instance.new("UIListLayout")
  268. Notilistlayout.Parent = NotiFrame
  269. Notilistlayout.SortOrder = Enum.SortOrder.LayoutOrder
  270. Notilistlayout.Padding = UDim.new(0, 5)
  271.  
  272.  
  273. function create:Notifile(titel,text,delays)
  274. local TitleFrame = Instance.new("Frame")
  275. TitleFrame.Name = "TitleFrame"
  276. TitleFrame.Parent = NotiFrame
  277. TitleFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  278. TitleFrame.BackgroundColor3 = Color3.fromRGB(18,18,18)
  279. TitleFrame.BorderSizePixel = 0
  280. TitleFrame.Position = UDim2.new(0.5, 0, 0.5,0)
  281. TitleFrame.Size = UDim2.new(0, 0, 0, 0)
  282. TitleFrame.ClipsDescendants = true
  283. TitleFrame.BackgroundTransparency = 0
  284.  
  285. local ConnerTitile = Instance.new("UICorner")
  286.  
  287. ConnerTitile.CornerRadius = UDim.new(0, 4)
  288. ConnerTitile.Name = ""
  289. ConnerTitile.Parent = TitleFrame
  290.  
  291. TitleFrame:TweenSizeAndPosition(UDim2.new(0, 400-10, 0, 70), UDim2.new(0.5, 0, 0.5,0), "Out", "Quad", 0.3, true)
  292.  
  293. local imagenoti = Instance.new("ImageLabel")
  294.  
  295. imagenoti.Parent = TitleFrame
  296. imagenoti.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  297. imagenoti.BackgroundTransparency = 1.000
  298. imagenoti.AnchorPoint = Vector2.new(0.5, 0.5)
  299. imagenoti.Position = UDim2.new(0.9, 0, 0.5, 0)
  300. imagenoti.Size = UDim2.new(0, 50, 0, 50)
  301. -- imagenoti.Image = "https://www.roblox.com/asset-thumbnail/image?assetId=7578496318&width=0&height=0&format=png"
  302.  
  303. local txdlid = Instance.new("TextLabel")
  304.  
  305. txdlid.Parent = TitleFrame
  306. txdlid.Name = "TextLabel_Tap"
  307. txdlid.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  308. txdlid.Size =UDim2.new(0, 160, 0,25 )
  309. txdlid.Font = Enum.Font.GothamBold
  310. txdlid.Text = titel
  311. txdlid.TextColor3 = Color3.fromRGB(255, 255, 255)
  312. txdlid.TextSize = 13.000
  313. txdlid.AnchorPoint = Vector2.new(0.5, 0.5)
  314. txdlid.Position = UDim2.new(0.23, 0, 0.3, 0)
  315. -- txdlid.TextYAlignment = Enum.TextYAlignment.Top
  316. txdlid.TextXAlignment = Enum.TextXAlignment.Left
  317. txdlid.BackgroundTransparency = 1
  318.  
  319. local LableFrame = Instance.new("Frame")
  320. LableFrame.Name = "LableFrame"
  321. LableFrame.Parent = TitleFrame
  322. LableFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  323. LableFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  324. LableFrame.BorderSizePixel = 0
  325. LableFrame.Position = UDim2.new(0.36, 0, 0.67,0)
  326. LableFrame.Size = UDim2.new(0, 260, 0,25 )
  327. LableFrame.ClipsDescendants = true
  328. LableFrame.BackgroundTransparency = 1
  329.  
  330. local TextNoti = Instance.new("TextLabel")
  331.  
  332. TextNoti.Parent = LableFrame
  333. TextNoti.Name = "TextLabel_Tap"
  334. TextNoti.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  335. TextNoti.Size =UDim2.new(0, 260, 0,25 )
  336. TextNoti.Font = Enum.Font.GothamBold
  337. TextNoti.Text = text
  338. TextNoti.TextColor3 = Color3.fromRGB(255, 255, 255)
  339. TextNoti.TextSize = 13.000
  340. TextNoti.AnchorPoint = Vector2.new(0.5, 0.5)
  341. TextNoti.Position = UDim2.new(0.5, 0, 0.5, 0)
  342. -- TextNoti.TextYAlignment = Enum.TextYAlignment.Top
  343. TextNoti.TextXAlignment = Enum.TextXAlignment.Left
  344. TextNoti.BackgroundTransparency = 1
  345.  
  346. repeat wait() until TitleFrame.Size == UDim2.new(0, 400-10, 0, 70)
  347.  
  348. local Time = Instance.new("Frame")
  349. Time.Name = "Time"
  350. Time.Parent = TitleFrame
  351. --Time.AnchorPoint = Vector2.new(0.5, 0.5)
  352. Time.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  353. Time.BorderSizePixel = 0
  354. Time.Position = UDim2.new(0, 0, 0.,0)
  355. Time.Size = UDim2.new(0, 0,0,0)
  356. Time.ClipsDescendants = false
  357. Time.BackgroundTransparency = 0
  358.  
  359. local ConnerTitile_Time = Instance.new("UICorner")
  360.  
  361. ConnerTitile_Time.CornerRadius = UDim.new(0, 4)
  362. ConnerTitile_Time.Name = ""
  363. ConnerTitile_Time.Parent = Time
  364.  
  365.  
  366. Time:TweenSizeAndPosition(UDim2.new(0, 400-10, 0, 3), UDim2.new(0., 0, 0.,0), "Out", "Quad", 0.3, true)
  367. repeat wait() until Time.Size == UDim2.new(0, 400-10, 0, 3)
  368.  
  369. TweenService:Create(
  370. Time,
  371. TweenInfo.new(tonumber(delays), Enum.EasingStyle.Linear, Enum.EasingDirection.InOut),
  372. {Size = UDim2.new(0, 0, 0, 3)} -- UDim2.new(0, 128, 0, 25)
  373. ):Play()
  374. delay(tonumber(delays),function()
  375. TweenService:Create(
  376. TitleFrame,
  377. TweenInfo.new(0.4, Enum.EasingStyle.Back, Enum.EasingDirection.InOut),
  378. {Size = UDim2.new(0, 0, 0, 0)} -- UDim2.new(0, 128, 0, 25)
  379. ):Play()
  380. wait(0.3)
  381. TitleFrame:Destroy()
  382. end
  383. )
  384. end
  385.  
  386.  
  387. function top:Taps(text)
  388. PageOrders = PageOrders + 1
  389. local name = tostring(text) or tostring(math.random(1,5000))
  390.  
  391. local Frame_Tap = Instance.new("Frame")
  392. Frame_Tap.Parent = ScrollingFrame_Menubar
  393. Frame_Tap.Name = text.."Server"
  394. Frame_Tap.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  395. Frame_Tap.BackgroundTransparency = 1
  396. Frame_Tap.Position = UDim2.new(0.0, 0, 0.0, 0)
  397. Frame_Tap.Size = UDim2.new(0, 100, 0, 25)
  398. Frame_Tap.Visible = true
  399.  
  400. local TextLabel_Tap = Instance.new("TextLabel")
  401.  
  402. TextLabel_Tap.Parent = Frame_Tap
  403. TextLabel_Tap.Name = "TextLabel_Tap"
  404. TextLabel_Tap.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  405. TextLabel_Tap.Position = UDim2.new(0.5, 0, 0.8, 0)
  406. TextLabel_Tap.Size = UDim2.new(0, 0, 0, 0)
  407. TextLabel_Tap.Font = Enum.Font.SourceSans
  408. TextLabel_Tap.Text = " "
  409. TextLabel_Tap.TextColor3 = Color3.fromRGB(0, 0, 0)
  410. TextLabel_Tap.TextSize = 14.000
  411. TextLabel_Tap.AnchorPoint = Vector2.new(0.5, 0.5)
  412.  
  413. local TextButton_Tap = Instance.new("TextButton")
  414.  
  415. TextButton_Tap.Parent = Frame_Tap
  416. TextButton_Tap.Name = "TextButton_Tap"
  417. TextButton_Tap.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  418. TextButton_Tap.BackgroundTransparency = 1.000
  419. TextButton_Tap.Position = UDim2.new(0.114491031, 0, -0.0216345787, 0)
  420. TextButton_Tap.Size = UDim2.new(0, 80, 0, 20)
  421. TextButton_Tap.Font = Enum.Font.GothamSemibold
  422. TextButton_Tap.TextColor3 = Color3.fromRGB(155, 155, 155)
  423. TextButton_Tap.TextSize = 13.000
  424. TextButton_Tap.Text = tostring(text)
  425.  
  426. local MainPage = Instance.new("Frame")
  427.  
  428. MainPage.Name = name.."_MainPage"
  429. MainPage.Parent = pagesFolder
  430. MainPage.BackgroundColor3 = Color3.fromRGB(255,255, 255)
  431. MainPage.BorderSizePixel = 0
  432. MainPage.Position = UDim2.new(0.5, 0, 0.5, 0) -- UDim2.new(0.0149812736, 0, 0.13, 0)
  433. MainPage.Size = UDim2.new(0, 518, 0, 375)
  434. MainPage.BackgroundTransparency = 1
  435. MainPage.ClipsDescendants = true
  436. MainPage.Visible = true
  437. MainPage.LayoutOrder = PageOrders
  438.  
  439.  
  440.  
  441.  
  442. TextButton_Tap.MouseButton1Click:connect(function()
  443. if MainPage.Name == text.."_MainPage" then
  444. UIPage:JumpToIndex(MainPage.LayoutOrder)
  445.  
  446. end
  447. for i ,v in next , ScrollingFrame_Menubar:GetChildren() do
  448. if v:IsA("Frame") then
  449. TweenService:Create(
  450. v.TextButton_Tap,
  451. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  452. {TextColor3 = Color3.fromRGB(155, 155, 155)}
  453. ):Play()
  454. end
  455.  
  456. TweenService:Create(
  457. TextButton_Tap,
  458. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  459. {TextColor3 = Color3.fromRGB(255, 255, 255)}
  460. ):Play()
  461. end
  462. end)
  463.  
  464. if fs == false then
  465. -- TweenService:Create(
  466. -- TextLabel_Tap,
  467. -- TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  468. -- {Size = UDim2.new(0, 70, 0, 2)}
  469. -- ):Play()
  470. TweenService:Create(
  471. TextButton_Tap,
  472. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  473. {TextColor3 = Color3.fromRGB(255, 255, 255)}
  474. ):Play()
  475.  
  476. MainPage.Visible = true
  477. Frame_Tap.Name = text .. "Server"
  478. fs = true
  479. end
  480. local ScrollingFrame_Pagefrist = Instance.new("ScrollingFrame")
  481.  
  482. ScrollingFrame_Pagefrist.Parent = MainPage
  483. ScrollingFrame_Pagefrist.Active = true
  484. ScrollingFrame_Pagefrist.BackgroundColor3 = Color3.fromRGB(23, 23, 23) -- 255, 255, 255
  485. ScrollingFrame_Pagefrist.BorderSizePixel = 0
  486. ScrollingFrame_Pagefrist.Size = UDim2.new(0, 518, 0, 375)
  487. ScrollingFrame_Pagefrist.ScrollBarThickness = 4
  488. ScrollingFrame_Pagefrist.ScrollBarImageColor3 = Color3.fromRGB(255, 255, 255) -- 255, 255, 255
  489.  
  490. local UIGridLayout_Pagefrist = Instance.new("UIGridLayout")
  491. local UIPadding_Pagefrist = Instance.new("UIPadding")
  492.  
  493. UIGridLayout_Pagefrist.Archivable = false
  494. UIGridLayout_Pagefrist.Parent = ScrollingFrame_Pagefrist
  495. UIGridLayout_Pagefrist.SortOrder = Enum.SortOrder.LayoutOrder
  496. UIGridLayout_Pagefrist.CellPadding = UDim2.new(0, 13, 0, 15)
  497. UIGridLayout_Pagefrist.CellSize = UDim2.new(0, 240, 0, 370)
  498.  
  499. UIPadding_Pagefrist.Parent = ScrollingFrame_Pagefrist
  500. UIPadding_Pagefrist.PaddingLeft = UDim.new(0, 10)
  501. UIPadding_Pagefrist.PaddingTop = UDim.new(0, 20)
  502.  
  503. local page = {}
  504.  
  505. function page:newpage()
  506.  
  507. local Pageframe = Instance.new("Frame")
  508.  
  509.  
  510. Pageframe.Parent = ScrollingFrame_Pagefrist
  511. Pageframe.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  512. Pageframe.BorderSizePixel = 0
  513. Pageframe.Position = UDim2.new(0.028957529, 0, 0.0496277921, 0)
  514. Pageframe.Size = UDim2.new(0, 240, 0, 379)
  515.  
  516.  
  517. local ScrollingFrame_Pageframe = Instance.new("ScrollingFrame")
  518.  
  519.  
  520. ScrollingFrame_Pageframe.Parent = Pageframe
  521. ScrollingFrame_Pageframe.Active = true
  522. ScrollingFrame_Pageframe.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  523. ScrollingFrame_Pageframe.BorderSizePixel = 0
  524. ScrollingFrame_Pageframe.Position = UDim2.new(0, 0, -0.0101253344, 0)
  525. ScrollingFrame_Pageframe.Size = UDim2.new(0, 240, 0, 379)
  526. ScrollingFrame_Pageframe.ScrollBarThickness = 4
  527. ScrollingFrame_Pageframe.ScrollBarImageColor3 = Color3.fromRGB(222, 222, 222)
  528.  
  529.  
  530.  
  531. local UIPadding_Pageframe = Instance.new("UIPadding")
  532. local UIListLayout_Pageframe = Instance.new("UIListLayout")
  533.  
  534.  
  535. UIPadding_Pageframe.Parent = ScrollingFrame_Pageframe
  536. UIPadding_Pageframe.PaddingLeft = UDim.new(0, 15)
  537. UIPadding_Pageframe.PaddingTop = UDim.new(0, 10)
  538.  
  539.  
  540. UIListLayout_Pageframe.Parent = ScrollingFrame_Pageframe
  541. UIListLayout_Pageframe.SortOrder = Enum.SortOrder.LayoutOrder
  542. UIListLayout_Pageframe.Padding = UDim.new(0, 7)
  543.  
  544. UIListLayout_Pageframe:GetPropertyChangedSignal('AbsoluteContentSize'):Connect(function()
  545. ScrollingFrame_Pageframe.CanvasSize = UDim2.new(0,0,0,UIListLayout_Pageframe.AbsoluteContentSize.Y + 120 )
  546. end)
  547.  
  548. UIGridLayout_Pagefrist:GetPropertyChangedSignal('AbsoluteContentSize'):Connect(function()
  549. ScrollingFrame_Pagefrist.CanvasSize = UDim2.new(0,0,0,UIGridLayout_Pagefrist.AbsoluteContentSize.Y + 50 )
  550. end)
  551.  
  552. game:GetService("RunService").Stepped:Connect(function ()
  553. pcall(function ()
  554. ScrollingFrame_Menubar.CanvasSize = UDim2.new(0, UIListLayout_Menubar.AbsoluteContentSize.X, 0,0)
  555. ScrollingFrame_Pageframe.CanvasSize = UDim2.new(0,0,0,UIListLayout_Pageframe.AbsoluteContentSize.Y +20 )
  556. ScrollingFrame_Pagefrist.CanvasSize = UDim2.new(0,0,0,UIGridLayout_Pagefrist.AbsoluteContentSize.Y + 40)
  557. end)
  558. end)
  559. local items = {}
  560.  
  561. function items:Toggle(text,config,callback)
  562. local Toggle = Instance.new("Frame")
  563.  
  564. Toggle.Parent = ScrollingFrame_Pageframe
  565. Toggle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  566. Toggle.BorderSizePixel = 0
  567. Toggle.Position = UDim2.new(0.5, 0, 0.5, 0)
  568. Toggle.Size = UDim2.new(0, 213, 0, 35)
  569. Toggle.BackgroundTransparency = 1
  570. Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  571.  
  572. local TextButton_Toggle = Instance.new("TextButton")
  573.  
  574. TextButton_Toggle.Parent = Toggle
  575. TextButton_Toggle.BackgroundTransparency =1
  576. TextButton_Toggle.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  577. TextButton_Toggle.BorderSizePixel = 0
  578. TextButton_Toggle.Size = UDim2.new(0, 213, 0, 35)
  579. TextButton_Toggle.AutoButtonColor = false
  580. TextButton_Toggle.Font = Enum.Font.SourceSans
  581. TextButton_Toggle.Text = " "
  582. TextButton_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  583. TextButton_Toggle.TextSize = 12.000
  584.  
  585. local TextButton_2_Toggle = Instance.new("TextButton")
  586.  
  587. TextButton_2_Toggle.Parent = TextButton_Toggle
  588. TextButton_2_Toggle.BackgroundColor3 = Color3.fromRGB(155, 155, 155)
  589. -- TextButton_2_Toggle.BorderColor3 = Color3.fromRGB(255, 255, 255)
  590. TextButton_2_Toggle.BorderSizePixel = 0
  591. TextButton_2_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  592. TextButton_2_Toggle.Position = UDim2.new(0.9, 0, 0.5, 0)
  593. TextButton_2_Toggle.Size = UDim2.new(0, 30, 0, 13)
  594. TextButton_2_Toggle.Font = Enum.Font.SourceSans
  595. TextButton_2_Toggle.Text = " "
  596. TextButton_2_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  597. TextButton_2_Toggle.TextSize = 12.000
  598. TextButton_2_Toggle.AutoButtonColor = false
  599.  
  600. local TextButton_Pageframe_Uiconner = Instance.new("UICorner")
  601.  
  602. TextButton_Pageframe_Uiconner.CornerRadius = UDim.new(0, 30)
  603. TextButton_Pageframe_Uiconner.Name = ""
  604. TextButton_Pageframe_Uiconner.Parent = TextButton_2_Toggle
  605.  
  606. local TextButton_3_Toggle = Instance.new("TextButton")
  607.  
  608. TextButton_3_Toggle.Parent = TextButton_2_Toggle
  609. TextButton_3_Toggle.BackgroundColor3 = Color3.fromRGB(255, 255,255)
  610. -- TextButton_3_Toggle.BorderColor3 = Color3.fromRGB(255, 255, 255)
  611. TextButton_3_Toggle.BorderSizePixel = 0
  612. TextButton_3_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  613. TextButton_3_Toggle.Position = UDim2.new(0.1, 0, 0.5, 0)
  614. TextButton_3_Toggle.Size = UDim2.new(0, 19, 0, 19)
  615. TextButton_3_Toggle.Font = Enum.Font.SourceSans
  616. TextButton_3_Toggle.Text = " "
  617. TextButton_3_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  618. TextButton_3_Toggle.TextSize = 12.000
  619. TextButton_3_Toggle.AutoButtonColor = false
  620.  
  621. local TextButton_Pageframe_Uiconner2 = Instance.new("UICorner")
  622.  
  623. TextButton_Pageframe_Uiconner2.CornerRadius = UDim.new(0, 30)
  624. TextButton_Pageframe_Uiconner2.Name = ""
  625. TextButton_Pageframe_Uiconner2.Parent = TextButton_3_Toggle
  626.  
  627. local TextButton_4_Toggle = Instance.new("TextButton")
  628.  
  629. TextButton_4_Toggle.Parent = TextButton_3_Toggle
  630. TextButton_4_Toggle.BackgroundColor3 = Color3.fromRGB(155, 155,155)
  631. -- TextButton_3_Toggle.BorderColor3 = Color3.fromRGB(255, 255, 255)
  632. TextButton_4_Toggle.BorderSizePixel = 0
  633. TextButton_4_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  634. TextButton_4_Toggle.Position = UDim2.new(0.5, 0, 0.5, 0)
  635. TextButton_4_Toggle.Size = UDim2.new(0, 27, 0, 27-2)
  636. TextButton_4_Toggle.Font = Enum.Font.SourceSans
  637. TextButton_4_Toggle.Text = " "
  638. TextButton_4_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  639. TextButton_4_Toggle.TextSize = 12.000
  640. TextButton_4_Toggle.AutoButtonColor = false
  641. TextButton_4_Toggle.BackgroundTransparency = 1
  642. TextButton_4_Toggle.Visible = true
  643.  
  644. local TextButton_Pageframe_Uiconner4 = Instance.new("UICorner")
  645.  
  646. TextButton_Pageframe_Uiconner4.CornerRadius = UDim.new(0, 30)
  647. TextButton_Pageframe_Uiconner4.Name = ""
  648. TextButton_Pageframe_Uiconner4.Parent = TextButton_4_Toggle
  649.  
  650. local TextLabel_Toggle = Instance.new("TextLabel")
  651.  
  652. TextLabel_Toggle.Parent = Toggle
  653. TextLabel_Toggle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  654. TextLabel_Toggle.BackgroundTransparency = 1
  655. TextLabel_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  656. TextLabel_Toggle.Position = UDim2.new(0.4, 0, 0.5, 0)
  657. TextLabel_Toggle.BorderSizePixel = 0
  658. TextLabel_Toggle.Size = UDim2.new(0, 130, 0, 25)
  659. TextLabel_Toggle.Font = Enum.Font.GothamSemibold
  660. TextLabel_Toggle.Text = text
  661. TextLabel_Toggle.TextColor3 = Color3.fromRGB(200, 200, 200)
  662. TextLabel_Toggle.TextSize = 13.000
  663. TextLabel_Toggle.ClipsDescendants = true
  664. TextLabel_Toggle.TextWrapped = true
  665. TextLabel_Toggle.TextXAlignment = Enum.TextXAlignment.Left
  666.  
  667. local TextButton_Toggle2 = Instance.new("TextButton")
  668.  
  669. TextButton_Toggle2.Parent = TextButton_Toggle
  670. TextButton_Toggle2.BackgroundTransparency =1
  671. TextButton_Toggle2.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  672. TextButton_Toggle2.BorderSizePixel = 0
  673. TextButton_Toggle2.Size = UDim2.new(0, 213, 0, 35)
  674. TextButton_Toggle2.AutoButtonColor = false
  675. TextButton_Toggle2.Font = Enum.Font.SourceSans
  676. TextButton_Toggle2.Text = " "
  677. TextButton_Toggle2.TextColor3 = Color3.fromRGB(0, 0, 0)
  678. TextButton_Toggle2.TextSize = 12.000
  679.  
  680. TextButton_Toggle2.MouseEnter:Connect(function()
  681. TweenService:Create(
  682. TextButton_4_Toggle,
  683. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  684. {BackgroundTransparency = 0.6} -- UDim2.new(0, 128, 0, 25)
  685. ):Play()
  686. TweenService:Create(
  687. TextLabel_Toggle,
  688. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  689. {TextColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  690. ):Play()
  691. end
  692. )
  693.  
  694. TextButton_Toggle2.MouseLeave:Connect(function()
  695. TweenService:Create(
  696. TextButton_4_Toggle,
  697. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  698. {BackgroundTransparency = 1} -- UDim2.new(0, 128, 0, 25)
  699. ):Play()
  700. TweenService:Create(
  701. TextLabel_Toggle,
  702. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  703. {TextColor3 = Color3.fromRGB(200, 200, 200)} -- UDim2.new(0, 128, 0, 25)
  704. ):Play()
  705. end
  706. )
  707.  
  708. local check = {toogle = false ; loacker = true ; togfunction = {
  709.  
  710. };
  711. }
  712. TextButton_Toggle2.MouseButton1Click:Connect(function()
  713. if check.toogle == false and check.loacker == true then
  714. TweenService:Create(
  715. TextButton_4_Toggle,
  716. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  717. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  718. ):Play()
  719. TweenService:Create(
  720. TextButton_3_Toggle,
  721. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  722. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  723. ):Play()
  724. TweenService:Create(
  725. TextButton_2_Toggle,
  726. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  727. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  728. ):Play()
  729. TextButton_3_Toggle:TweenSizeAndPosition(UDim2.new(0, 19, 0, 19), UDim2.new(1, 0, 0.5, 0), "Out", "Quad", 0.3, true)
  730. elseif check.loacker == true then
  731. TweenService:Create(
  732. TextButton_4_Toggle,
  733. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  734. {BackgroundColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  735. ):Play()
  736. TweenService:Create(
  737. TextButton_3_Toggle,
  738. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  739. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  740. ):Play()
  741. TweenService:Create(
  742. TextButton_2_Toggle,
  743. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  744. {BackgroundColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  745. ):Play()
  746. TextButton_3_Toggle:TweenSizeAndPosition(UDim2.new(0, 19, 0, 19), UDim2.new(0.1, 0, 0.5, 0), "Out", "Quad", 0.3, true)
  747. end
  748. if check.loacker == true then
  749. check.toogle = not check.toogle
  750. callback(check.toogle)
  751. end
  752. end
  753. )
  754.  
  755. if config == true then
  756. TweenService:Create(
  757. TextButton_4_Toggle,
  758. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  759. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  760. ):Play()
  761. TweenService:Create(
  762. TextButton_3_Toggle,
  763. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  764. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  765. ):Play()
  766. TweenService:Create(
  767. TextButton_2_Toggle,
  768. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  769. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  770. ):Play()
  771. TextButton_3_Toggle:TweenSizeAndPosition(UDim2.new(0, 19, 0, 19), UDim2.new(1, 0, 0.5, 0), "Out", "Quad", 0.3, true)
  772. check.toogle = true
  773. callback(check.toogle)
  774. end
  775. local lockerframe = Instance.new("Frame")
  776.  
  777. lockerframe.Name = "lockerframe"
  778. lockerframe.Parent = Toggle
  779. lockerframe.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  780. lockerframe.BackgroundTransparency = 1
  781. lockerframe.Size = UDim2.new(0, 320, 0, 35)
  782. lockerframe.Position = UDim2.new(0.5, 0, 0.5, 0)
  783. lockerframe.AnchorPoint = Vector2.new(0.5, 0.5)
  784.  
  785. local LockerImageLabel = Instance.new("ImageLabel")
  786. LockerImageLabel.Parent = lockerframe
  787. LockerImageLabel.BackgroundTransparency = 1.000
  788. LockerImageLabel.BorderSizePixel = 0
  789. LockerImageLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  790. LockerImageLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  791. LockerImageLabel.Size = UDim2.new(0, 0, 0, 0)
  792. LockerImageLabel.Image = "http://www.roblox.com/asset/?id=6031082533"
  793.  
  794.  
  795. function check.togfunction:lock()
  796. TweenService:Create(
  797. lockerframe,
  798. TweenInfo.new(.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out,0.1),
  799. {BackgroundTransparency = 0.7}
  800. ):Play()
  801. TweenService:Create(
  802. LockerImageLabel,
  803. TweenInfo.new(.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out,0.1),
  804. {Size = UDim2.new(0, 30, 0, 30)}
  805. ):Play()
  806.  
  807. check.loacker = false
  808. -- pcall(callback,locker)
  809. end
  810. function check.togfunction:unlock()
  811. TweenService:Create(
  812. lockerframe,
  813. TweenInfo.new(.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out,0.1),
  814. {BackgroundTransparency = 1}
  815. ):Play()
  816. TweenService:Create(
  817. LockerImageLabel,
  818. TweenInfo.new(.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out,0.1),
  819. {Size = UDim2.new(0, 0, 0, 0)}
  820. ):Play()
  821. check.loacker = true
  822. -- pcall(callback,locker)
  823. end
  824.  
  825. return check.togfunction
  826. end
  827.  
  828. function items:Button(text,callback)
  829.  
  830. local ButtonFrame = Instance.new("Frame")
  831.  
  832. ButtonFrame.Name = "ButtonFrame"
  833. ButtonFrame.Parent = ScrollingFrame_Pageframe
  834. ButtonFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  835. ButtonFrame.BorderSizePixel = 0
  836. ButtonFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  837. ButtonFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  838. ButtonFrame.Size = UDim2.new(0, 213, 0, 25) -- UDim2.new(0, 213, 0, 35)
  839. ButtonFrame.BackgroundTransparency = 1
  840. ButtonFrame.ClipsDescendants = true
  841.  
  842.  
  843.  
  844. local MheeFrameStroke = Instance.new("UIStroke")
  845.  
  846. MheeFrameStroke.Thickness = 0
  847. MheeFrameStroke.Name = ""
  848. MheeFrameStroke.Parent = ButtonFrame
  849. MheeFrameStroke.LineJoinMode = Enum.LineJoinMode.Round
  850. MheeFrameStroke.Color = Color3.fromRGB(255, 255, 255)
  851. MheeFrameStroke.Transparency = 0.7
  852.  
  853. local Button = Instance.new("TextButton")
  854.  
  855. Button.Parent = ButtonFrame
  856. Button.Name = "Button"
  857. Button.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  858. Button.Size = UDim2.new(0,150, 0, 25)
  859. Button.Font = Enum.Font.SourceSansSemibold
  860. Button.Text = tostring(text)
  861. Button.TextColor3 = Color3.fromRGB(155, 155, 155)
  862. Button.TextSize = 13.000
  863. Button.AnchorPoint = Vector2.new(0.5, 0.5)
  864. Button.Position = UDim2.new(0.5, 0, 0.5, 0)
  865. Button.TextXAlignment = Enum.TextXAlignment.Center
  866. Button.BackgroundTransparency = 0.6
  867. Button.TextWrapped = true
  868. Button.AutoButtonColor = false
  869. Button.ClipsDescendants = true
  870.  
  871. local ConnerPageMhee = Instance.new("UICorner")
  872.  
  873. ConnerPageMhee.CornerRadius = UDim.new(0, 4)
  874. ConnerPageMhee.Name = ""
  875. ConnerPageMhee.Parent = Button
  876.  
  877. Button.MouseEnter:Connect(function()
  878. TweenService:Create(
  879. Button,
  880. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  881. {Size = UDim2.new(0, 213, 0, 25)} -- UDim2.new(0, 128, 0, 25)
  882. ):Play()
  883. TweenService:Create(
  884. Button,
  885. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  886. {BackgroundTransparency = 0} -- UDim2.new(0, 128, 0, 25)
  887. ):Play()
  888. TweenService:Create(
  889. Button,
  890. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  891. {TextColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  892. ):Play()
  893. end
  894. )
  895. Button.MouseLeave:Connect(function()
  896. TweenService:Create(
  897. Button,
  898. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  899. {Size = UDim2.new(0, 150, 0, 25)} -- UDim2.new(0, 128, 0, 25)
  900. ):Play()
  901. TweenService:Create(
  902. Button,
  903. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  904. {BackgroundTransparency = 0.6} -- UDim2.new(0, 128, 0, 25)
  905. ):Play()
  906. TweenService:Create(
  907. Button,
  908. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  909. {TextColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  910. ):Play()
  911. end
  912. )
  913.  
  914. Button.MouseButton1Click:Connect(function()
  915. -- Ripple(Button)
  916. callback()
  917. TweenService:Create(
  918. Button,
  919. TweenInfo.new(0.2, Enum.EasingStyle.Back, Enum.EasingDirection.Out),
  920. {TextSize = 16} -- UDim2.new(0, 128, 0, 25)
  921. ):Play()
  922. wait(0.1)
  923. TweenService:Create(
  924. Button,
  925. TweenInfo.new(0.2, Enum.EasingStyle.Back, Enum.EasingDirection.Out),
  926. {TextSize = 13} -- UDim2.new(0, 128, 0, 25)
  927. ):Play()
  928. end
  929. )
  930.  
  931. end
  932.  
  933. function items:Slider(text,check,floor,min,max,de,lol,tog,callback)
  934.  
  935. if check then
  936.  
  937. local SliderFrame = Instance.new("Frame")
  938.  
  939. SliderFrame.Name = "SliderFrame"
  940. SliderFrame.Parent = ScrollingFrame_Pageframe
  941. SliderFrame.BackgroundColor3 = Color3.fromRGB(28, 28, 28)-- Color3.fromRGB(255, 255, 255)
  942. SliderFrame.BorderSizePixel = 0
  943. SliderFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  944. SliderFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  945. SliderFrame.Size = UDim2.new(0, 213, 0, 75) -- UDim2.new(0, 213, 0, 35)
  946. SliderFrame.BackgroundTransparency = 0
  947. SliderFrame.ClipsDescendants = true
  948.  
  949. local SliderFrameConner = Instance.new("UICorner")
  950.  
  951. SliderFrameConner.CornerRadius = UDim.new(0, 4)
  952. SliderFrameConner.Name = ""
  953. SliderFrameConner.Parent = SliderFrame
  954.  
  955. local SliderFrameStroke = Instance.new("UIStroke")
  956.  
  957. SliderFrameStroke.Thickness = 1
  958. SliderFrameStroke.Name = ""
  959. SliderFrameStroke.Parent = SliderFrame
  960. SliderFrameStroke.LineJoinMode = Enum.LineJoinMode.Round
  961. SliderFrameStroke.Color = Color3.fromRGB(255, 255, 255)
  962. SliderFrameStroke.Transparency = 0.7
  963.  
  964.  
  965. SliderFrame.MouseEnter:Connect(function()
  966. TweenService:Create(
  967. SliderFrameStroke,
  968. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  969. {Transparency = 0} -- UDim2.new(0, 128, 0, 25)
  970. ):Play()
  971. end
  972. )
  973.  
  974. SliderFrame.MouseLeave:Connect(function()
  975. TweenService:Create(
  976. SliderFrameStroke,
  977. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  978. {Transparency = 0.7} -- UDim2.new(0, 128, 0, 25)
  979. ):Play()
  980. end
  981. )
  982.  
  983.  
  984. local LabelNameSliderxd = Instance.new("TextLabel")
  985.  
  986. LabelNameSliderxd.Parent = SliderFrame
  987. LabelNameSliderxd.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  988. LabelNameSliderxd.BackgroundTransparency = 1
  989. LabelNameSliderxd.BorderSizePixel = 0
  990. LabelNameSliderxd.Position = UDim2.new(0.35, 0, 0.2, 0)
  991. LabelNameSliderxd.AnchorPoint = Vector2.new(0.5, 0.5)
  992. LabelNameSliderxd.Size = UDim2.new(0, 120, 0, 20)
  993. LabelNameSliderxd.Font = Enum.Font.GothamBold
  994. LabelNameSliderxd.Text = tostring(text)
  995. LabelNameSliderxd.TextColor3 = Color3.fromRGB(255, 255, 255)
  996. LabelNameSliderxd.TextSize = 11.000
  997. LabelNameSliderxd.TextXAlignment = Enum.TextXAlignment.Left
  998.  
  999.  
  1000. local ShowValueFarm = Instance.new("Frame")
  1001.  
  1002. ShowValueFarm.Name = "ShowValueFarm"
  1003. ShowValueFarm.Parent = SliderFrame
  1004. ShowValueFarm.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  1005. ShowValueFarm.Position = UDim2.new(0.0833333358, 0, 0.235135213, 0)
  1006. ShowValueFarm.Size = UDim2.new(0, 75, 0, 15)
  1007. ShowValueFarm.BackgroundTransparency = 0
  1008. ShowValueFarm.BorderSizePixel = 0
  1009. ShowValueFarm.AnchorPoint = Vector2.new(0.5, 0.5)
  1010. ShowValueFarm.Position = UDim2.new(0.8, 0, 0.2, 0)
  1011. ShowValueFarm.ClipsDescendants = false
  1012.  
  1013. local CustomValue = Instance.new("TextBox")
  1014.  
  1015. CustomValue.Parent = ShowValueFarm
  1016. CustomValue.BackgroundColor3 = Color3.fromRGB(45,45, 45)
  1017. CustomValue.BorderSizePixel = 0
  1018. CustomValue.ClipsDescendants = true
  1019. CustomValue.AnchorPoint = Vector2.new(0.5, 0.5)
  1020. CustomValue.Position = UDim2.new(0.5, 0, 0.5, 0)
  1021. CustomValue.Size = UDim2.new(0, 158, 0, 26)
  1022. CustomValue.Font = Enum.Font.GothamSemibold
  1023. CustomValue.PlaceholderColor3 = Color3.fromRGB(222, 222, 222)
  1024. CustomValue.PlaceholderText = ""
  1025. if floor == true then
  1026. CustomValue.Text = tostring(de and string.format("%.1f",(de / max) * (max - min) + min) or 0)
  1027. else
  1028. CustomValue.Text = tostring(de and math.floor( (de / max) * (max - min) + min) or 0)
  1029. end
  1030. CustomValue.TextColor3 = Color3.fromRGB(255, 255, 255)
  1031. CustomValue.TextSize = 8.000
  1032. CustomValue.BackgroundTransparency = 1
  1033.  
  1034. local ValueFrame = Instance.new("Frame")
  1035.  
  1036. ValueFrame.Name = "ValueFrame"
  1037. ValueFrame.Parent = SliderFrame
  1038. ValueFrame.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  1039. ValueFrame.Position = UDim2.new(0.0833333358, 0, 0.235135213, 0)
  1040. ValueFrame.Size = UDim2.new(0, 140, 0, 5)
  1041. ValueFrame.BackgroundTransparency = 0
  1042. ValueFrame.BorderSizePixel = 0
  1043. ValueFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  1044. ValueFrame.Position = UDim2.new(0.4, 0, 0.8, 0)
  1045. ValueFrame.ClipsDescendants = false
  1046.  
  1047.  
  1048. local PartValue = Instance.new("Frame")
  1049.  
  1050. PartValue.Name = "PartValue"
  1051. PartValue.Parent = ValueFrame
  1052. PartValue.BackgroundColor3 = Color3.fromRGB(222, 222, 222)
  1053. PartValue.Position = UDim2.new(0.0833333358, 0, 0.235135213, 0)
  1054. PartValue.Size = UDim2.new(0, 140, 0, 5)
  1055. PartValue.BackgroundTransparency = 1
  1056. PartValue.BorderSizePixel = 0
  1057. PartValue.AnchorPoint = Vector2.new(0.5, 0.5)
  1058. PartValue.Position = UDim2.new(0.5, 0, 0.5, 0)
  1059. PartValue.ClipsDescendants = false
  1060.  
  1061. local MainValue = Instance.new("Frame")
  1062.  
  1063. MainValue.Name = "MainValue"
  1064. MainValue.Parent = PartValue
  1065. MainValue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1066. MainValue.Size = UDim2.new((de or 0) / max, 0, 0, 5)
  1067. MainValue.BackgroundTransparency = 0
  1068. MainValue.BorderSizePixel = 0
  1069. -- MainValue.AnchorPoint = Vector2.new(0.5, 0.5)
  1070. MainValue.Position = UDim2.new(0., 0, 0.0, 0)
  1071. MainValue.ClipsDescendants = false
  1072.  
  1073. local Conner_S1 = Instance.new("UICorner")
  1074.  
  1075. Conner_S1.CornerRadius = UDim.new(0, 8)
  1076. Conner_S1.Name = ""
  1077. Conner_S1.Parent = MainValue
  1078.  
  1079. local Conner_S2 = Instance.new("UICorner")
  1080.  
  1081. Conner_S2.CornerRadius = UDim.new(0, 8)
  1082. Conner_S2.Name = ""
  1083. Conner_S2.Parent = ValueFrame
  1084.  
  1085. local ConneValue = Instance.new("Frame")
  1086.  
  1087. ConneValue.Name = "ConneValue"
  1088. ConneValue.Parent = PartValue
  1089. ConneValue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1090. ConneValue.Size = UDim2.new(0, 13, 0,13)
  1091. ConneValue.BackgroundTransparency = 0
  1092. ConneValue.BorderSizePixel = 0
  1093. ConneValue.AnchorPoint = Vector2.new(0.5, 0.5)
  1094. ConneValue.Position = UDim2.new((de or 0)/max, 0.5, 0.3,0.5, 0)
  1095. ConneValue.ClipsDescendants = false
  1096.  
  1097.  
  1098. local Conner_Conne = Instance.new("UICorner")
  1099.  
  1100. Conner_Conne.CornerRadius = UDim.new(0, 300)
  1101. Conner_Conne.Name = ""
  1102. Conner_Conne.Parent = ConneValue
  1103.  
  1104. local Addvalue = Instance.new("ImageButton")
  1105.  
  1106. Addvalue.Name = "Imatog"
  1107. Addvalue.Parent = SliderFrame
  1108. Addvalue.BackgroundTransparency = 1.000
  1109. Addvalue.BorderSizePixel = 0
  1110. Addvalue.Position = UDim2.new(0.85, 0, 0.35, 0)
  1111. Addvalue.Size = UDim2.new(0, 15, 0, 15)
  1112. Addvalue.Image = "http://www.roblox.com/asset/?id=6035067836"
  1113. Addvalue.ImageColor3 = Color3.fromRGB(255, 255, 255)
  1114.  
  1115. local Deletevalue = Instance.new("ImageButton")
  1116.  
  1117. Deletevalue.Name = "Imatog"
  1118. Deletevalue.Parent = SliderFrame
  1119. Deletevalue.BackgroundTransparency = 1.000
  1120. Deletevalue.BorderSizePixel = 0
  1121. Deletevalue.Position = UDim2.new(0.7, 0, 0.35, 0)
  1122. Deletevalue.Size = UDim2.new(0, 15, 0, 15)
  1123. Deletevalue.Image = "http://www.roblox.com/asset/?id=6035047377"
  1124. Deletevalue.ImageColor3 = Color3.fromRGB(255, 255, 255)
  1125.  
  1126.  
  1127. local TextButton_2_Toggle = Instance.new("TextButton")
  1128.  
  1129. TextButton_2_Toggle.Parent = ValueFrame
  1130. TextButton_2_Toggle.BackgroundColor3 = Color3.fromRGB(155, 155, 155)
  1131. -- TextButton_2_Toggle.BorderColor3 = Color3.fromRGB(255, 255, 255)
  1132. TextButton_2_Toggle.BorderSizePixel = 0
  1133. TextButton_2_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  1134. TextButton_2_Toggle.Position = UDim2.new(1.25, 0, 0.4, 0)
  1135. TextButton_2_Toggle.Size = UDim2.new(0, 30, 0, 13)
  1136. TextButton_2_Toggle.Font = Enum.Font.SourceSans
  1137. TextButton_2_Toggle.Text = " "
  1138. TextButton_2_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  1139. TextButton_2_Toggle.TextSize = 12.000
  1140. TextButton_2_Toggle.AutoButtonColor = false
  1141.  
  1142. local TextButton_Pageframe_Uiconner = Instance.new("UICorner")
  1143.  
  1144. TextButton_Pageframe_Uiconner.CornerRadius = UDim.new(0, 30)
  1145. TextButton_Pageframe_Uiconner.Name = ""
  1146. TextButton_Pageframe_Uiconner.Parent = TextButton_2_Toggle
  1147.  
  1148. local TextButton_3_Toggle = Instance.new("TextButton")
  1149.  
  1150. TextButton_3_Toggle.Parent = TextButton_2_Toggle
  1151. TextButton_3_Toggle.BackgroundColor3 = Color3.fromRGB(255, 255,255)
  1152. -- TextButton_3_Toggle.BorderColor3 = Color3.fromRGB(255, 255, 255)
  1153. TextButton_3_Toggle.BorderSizePixel = 0
  1154. TextButton_3_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  1155. TextButton_3_Toggle.Position = UDim2.new(0.1, 0, 0.5, 0)
  1156. TextButton_3_Toggle.Size = UDim2.new(0, 19, 0, 19)
  1157. TextButton_3_Toggle.Font = Enum.Font.SourceSans
  1158. TextButton_3_Toggle.Text = " "
  1159. TextButton_3_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  1160. TextButton_3_Toggle.TextSize = 12.000
  1161. TextButton_3_Toggle.AutoButtonColor = false
  1162.  
  1163. local TextButton_Pageframe_Uiconner2 = Instance.new("UICorner")
  1164.  
  1165. TextButton_Pageframe_Uiconner2.CornerRadius = UDim.new(0, 30)
  1166. TextButton_Pageframe_Uiconner2.Name = ""
  1167. TextButton_Pageframe_Uiconner2.Parent = TextButton_3_Toggle
  1168.  
  1169. local TextButton_4_Toggle = Instance.new("TextButton")
  1170.  
  1171. TextButton_4_Toggle.Parent = TextButton_3_Toggle
  1172. TextButton_4_Toggle.BackgroundColor3 = Color3.fromRGB(155, 155,155)
  1173. -- TextButton_3_Toggle.BorderColor3 = Color3.fromRGB(255, 255, 255)
  1174. TextButton_4_Toggle.BorderSizePixel = 0
  1175. TextButton_4_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  1176. TextButton_4_Toggle.Position = UDim2.new(0.5, 0, 0.5, 0)
  1177. TextButton_4_Toggle.Size = UDim2.new(0, 27, 0, 27-2)
  1178. TextButton_4_Toggle.Font = Enum.Font.SourceSans
  1179. TextButton_4_Toggle.Text = " "
  1180. TextButton_4_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  1181. TextButton_4_Toggle.TextSize = 12.000
  1182. TextButton_4_Toggle.AutoButtonColor = false
  1183. TextButton_4_Toggle.BackgroundTransparency = 1
  1184. TextButton_4_Toggle.Visible = true
  1185.  
  1186. local TextButton_Pageframe_Uiconner4 = Instance.new("UICorner")
  1187.  
  1188. TextButton_Pageframe_Uiconner4.CornerRadius = UDim.new(0, 30)
  1189. TextButton_Pageframe_Uiconner4.Name = ""
  1190. TextButton_Pageframe_Uiconner4.Parent = TextButton_4_Toggle
  1191.  
  1192.  
  1193. local TextButton_Toggle = Instance.new("TextButton")
  1194.  
  1195. TextButton_Toggle.Parent = ValueFrame
  1196. TextButton_Toggle.BackgroundTransparency =1
  1197. TextButton_Toggle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1198. TextButton_Toggle.BorderSizePixel = 0
  1199. TextButton_Toggle.Size = UDim2.new(0, 50, 0, 20)
  1200. TextButton_Toggle.AutoButtonColor = false
  1201. TextButton_Toggle.Font = Enum.Font.SourceSans
  1202. TextButton_Toggle.Text = " "
  1203. TextButton_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  1204. TextButton_Toggle.TextSize = 12.000
  1205. TextButton_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  1206. TextButton_Toggle.Position = UDim2.new(1.25, 0, 0.4, 0)
  1207.  
  1208.  
  1209.  
  1210. -- local value = de
  1211. local check2 = {toogle2 = false;}
  1212. local function move(input)
  1213. local pos =
  1214. UDim2.new(
  1215. math.clamp((input.Position.X - ValueFrame.AbsolutePosition.X) / ValueFrame.AbsoluteSize.X, 0, 1),
  1216. 0,
  1217. 0.3,
  1218. 0
  1219. )
  1220. local pos1 =
  1221. UDim2.new(
  1222. math.clamp((input.Position.X - ValueFrame.AbsolutePosition.X) / ValueFrame.AbsoluteSize.X, 0, 1),
  1223. 0,
  1224. 0,
  1225. 5
  1226. )
  1227.  
  1228. MainValue:TweenSize(pos1, "Out", "Sine", 0.2, true)
  1229.  
  1230. ConneValue:TweenPosition(pos, "Out", "Sine", 0.2, true)
  1231. if floor == true then
  1232. local value = string.format("%.1f",((pos.X.Scale * max) / max) * (max - min) + min)
  1233. CustomValue.Text = tostring(value)
  1234. -- callback[2] = value
  1235. callback({
  1236. ["s"] = value;
  1237. ["t"] = check2.toogle2
  1238. })
  1239. --callback({value,check2.toogle2})
  1240. --callback(value)
  1241. else
  1242. local value = math.floor(((pos.X.Scale * max) / max) * (max - min) + min)
  1243. CustomValue.Text = tostring(value)
  1244. callback({
  1245. ["s"] = value;
  1246. ["t"] = check2.toogle2
  1247. })
  1248. -- callback({value,check2.toogle2})
  1249.  
  1250. end
  1251.  
  1252.  
  1253.  
  1254. end
  1255.  
  1256. local dragging = false
  1257. ConneValue.InputBegan:Connect(
  1258. function(input)
  1259. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1260. dragging = true
  1261.  
  1262. end
  1263. end
  1264. )
  1265. ConneValue.InputEnded:Connect(
  1266. function(input)
  1267. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1268. dragging = false
  1269.  
  1270. end
  1271. end
  1272. )
  1273. SliderFrame.InputBegan:Connect(
  1274. function(input)
  1275. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1276. dragging = true
  1277.  
  1278. end
  1279. end
  1280. )
  1281. SliderFrame.InputEnded:Connect(
  1282. function(input)
  1283. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1284. dragging = false
  1285.  
  1286. end
  1287. end
  1288. )
  1289.  
  1290.  
  1291. ValueFrame.InputBegan:Connect(
  1292. function(input)
  1293. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1294. dragging = true
  1295.  
  1296. end
  1297. end
  1298. )
  1299. ValueFrame.InputEnded:Connect(
  1300. function(input)
  1301. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1302. dragging = false
  1303.  
  1304. end
  1305. end
  1306. )
  1307.  
  1308. game:GetService("UserInputService").InputChanged:Connect(
  1309. function(input)
  1310. if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then
  1311. move(input)
  1312. end
  1313. end
  1314. )
  1315.  
  1316. CustomValue.FocusLost:Connect(function()
  1317. if CustomValue.Text == "" then
  1318. CustomValue.Text = de
  1319. end
  1320. if tonumber(CustomValue.Text) > max then
  1321. CustomValue.Text = max
  1322. end
  1323. if tonumber(CustomValue.Text) <= min then
  1324. CustomValue.Text = min
  1325. end
  1326. MainValue:TweenSize(UDim2.new((CustomValue.Text or 0) / max, 0, 0, 5), "Out", "Sine", 0.2, true)
  1327. ConneValue:TweenPosition(UDim2.new((CustomValue.Text or 0)/max, 0,0, 0) , "Out", "Sine", 0.2, true)
  1328. if floor == true then
  1329. CustomValue.Text = tostring(CustomValue.Text and string.format("%.1f",(CustomValue.Text / max) * (max - min) + min) )
  1330. else
  1331. CustomValue.Text = tostring(CustomValue.Text and math.floor( (CustomValue.Text / max) * (max - min) + min) )
  1332. end
  1333. callback({
  1334. ["s"] = CustomValue.Text;
  1335. ["t"] = check2.toogle2;
  1336. })
  1337. -- callback({ tonumber(CustomValue.Text),check2.toogle2})
  1338. -- pcall(callback, CustomValue.Text)
  1339. end)
  1340.  
  1341.  
  1342. Addvalue.MouseButton1Click:Connect(function ()
  1343. if CustomValue.Text == "" then
  1344. CustomValue.Text = de
  1345. end
  1346. pcall(function()
  1347. CustomValue.Text = CustomValue.Text - tonumber(lol)
  1348. end)
  1349. if tonumber(CustomValue.Text) > max then
  1350. CustomValue.Text = max
  1351. end
  1352. if tonumber(CustomValue.Text) < min then
  1353. CustomValue.Text = min
  1354. end
  1355. MainValue:TweenSize(UDim2.new((CustomValue.Text or 0 ) / max, 0, 0, 5), "Out", "Sine", 0.2, true)
  1356. ConneValue:TweenPosition(UDim2.new((CustomValue.Text or 0)/max, 0,0.5, 0) , "Out", "Sine", 0.2, true)
  1357. if floor == true then
  1358. CustomValue.Text = tostring(CustomValue.Text and string.format("%.1f",(CustomValue.Text / max) * (max - min) + min) )
  1359. else
  1360. CustomValue.Text = tostring(CustomValue.Text and math.floor( (CustomValue.Text / max) * (max - min) + min) )
  1361. end
  1362. callback({
  1363. ["s"] = CustomValue.Text;
  1364. ["t"] = check2.toogle2
  1365. })
  1366. -- callback({ tonumber(CustomValue.Text),check2.toogle2})
  1367. -- pcall(callback, CustomValue.Text)
  1368. end)
  1369.  
  1370. Deletevalue.MouseButton1Click:Connect(function ()
  1371. if CustomValue.Text == "" then
  1372. CustomValue.Text = de
  1373. end
  1374. pcall(function()
  1375. CustomValue.Text = CustomValue.Text + tonumber(lol)
  1376. end)
  1377. if tonumber(CustomValue.Text) > max then
  1378. CustomValue.Text = max
  1379. end
  1380. if tonumber(CustomValue.Text) < min then
  1381. CustomValue.Text = min
  1382. end
  1383. MainValue:TweenSize(UDim2.new((CustomValue.Text or 0 ) / max, 0, 0, 5), "Out", "Sine", 0.2, true)
  1384. ConneValue:TweenPosition(UDim2.new((CustomValue.Text or 0)/max, 0,0.5, 0) , "Out", "Sine", 0.2, true)
  1385. if floor == true then
  1386. CustomValue.Text = tostring(CustomValue.Text and string.format("%.1f",(CustomValue.Text / max) * (max - min) + min) )
  1387. else
  1388. CustomValue.Text = tostring(CustomValue.Text and math.floor( (CustomValue.Text / max) * (max - min) + min) )
  1389. end
  1390. callback({
  1391. ["s"] = CustomValue.Text;
  1392. ["t"] = check2.toogle2;
  1393. })
  1394. --callback({ tonumber(CustomValue.Text),check2.toogle2})
  1395. -- pcall(callback, CustomValue.Text)
  1396. end)
  1397.  
  1398.  
  1399.  
  1400.  
  1401. ---
  1402. TextButton_Toggle.MouseEnter:Connect(function()
  1403. TweenService:Create(
  1404. TextButton_4_Toggle,
  1405. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1406. {BackgroundTransparency = 0.6} -- UDim2.new(0, 128, 0, 25)
  1407. ):Play()
  1408. end
  1409. )
  1410.  
  1411. TextButton_Toggle.MouseLeave:Connect(function()
  1412. TweenService:Create(
  1413. TextButton_4_Toggle,
  1414. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1415. {BackgroundTransparency = 1} -- UDim2.new(0, 128, 0, 25)
  1416. ):Play()
  1417. end
  1418. )
  1419.  
  1420.  
  1421.  
  1422. TextButton_Toggle.MouseButton1Click:Connect(function()
  1423. if check2.toogle2 == false then
  1424. TweenService:Create(
  1425. TextButton_4_Toggle,
  1426. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1427. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  1428. ):Play()
  1429. TweenService:Create(
  1430. TextButton_3_Toggle,
  1431. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1432. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  1433. ):Play()
  1434. TweenService:Create(
  1435. TextButton_2_Toggle,
  1436. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1437. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  1438. ):Play()
  1439. TextButton_3_Toggle:TweenSizeAndPosition(UDim2.new(0, 19, 0, 19), UDim2.new(1, 0, 0.5, 0), "Out", "Quad", 0.3, true)
  1440. else
  1441. TweenService:Create(
  1442. TextButton_4_Toggle,
  1443. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1444. {BackgroundColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  1445. ):Play()
  1446. TweenService:Create(
  1447. TextButton_3_Toggle,
  1448. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1449. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  1450. ):Play()
  1451. TweenService:Create(
  1452. TextButton_2_Toggle,
  1453. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1454. {BackgroundColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  1455. ):Play()
  1456. TextButton_3_Toggle:TweenSizeAndPosition(UDim2.new(0, 19, 0, 19), UDim2.new(0.1, 0, 0.5, 0), "Out", "Quad", 0.3, true)
  1457. end
  1458. check2.toogle2 = not check2.toogle2
  1459. callback({
  1460. ["t"] = check2.toogle2;
  1461.  
  1462. })
  1463. -- callback({value,check2.toogle2})
  1464. --callback(check2.toogle2)
  1465. end
  1466. )
  1467.  
  1468. if tog == true then
  1469. TweenService:Create(
  1470. TextButton_4_Toggle,
  1471. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1472. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  1473. ):Play()
  1474. TweenService:Create(
  1475. TextButton_3_Toggle,
  1476. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1477. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  1478. ):Play()
  1479. TweenService:Create(
  1480. TextButton_2_Toggle,
  1481. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1482. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  1483. ):Play()
  1484. TextButton_3_Toggle:TweenSizeAndPosition(UDim2.new(0, 19, 0, 19), UDim2.new(1, 0, 0.5, 0), "Out", "Quad", 0.3, true)
  1485. check2.toogle2 = true
  1486. callback({
  1487. ["t"] = check2.toogle2;
  1488. })
  1489. -- callback({value,check2.toogle2})
  1490. -- callback(check2.toogle2)
  1491. end
  1492.  
  1493.  
  1494. else
  1495. tog = nil
  1496. local SliderFrame = Instance.new("Frame")
  1497.  
  1498. SliderFrame.Name = "SliderFrame"
  1499. SliderFrame.Parent = ScrollingFrame_Pageframe
  1500. SliderFrame.BackgroundColor3 = Color3.fromRGB(28, 28, 28)-- Color3.fromRGB(255, 255, 255)
  1501. SliderFrame.BorderSizePixel = 0
  1502. SliderFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  1503. SliderFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  1504. SliderFrame.Size = UDim2.new(0, 213, 0, 75) -- UDim2.new(0, 213, 0, 35)
  1505. SliderFrame.BackgroundTransparency = 0
  1506. SliderFrame.ClipsDescendants = true
  1507.  
  1508. local SliderFrameConner = Instance.new("UICorner")
  1509.  
  1510. SliderFrameConner.CornerRadius = UDim.new(0, 4)
  1511. SliderFrameConner.Name = ""
  1512. SliderFrameConner.Parent = SliderFrame
  1513.  
  1514. local SliderFrameStroke = Instance.new("UIStroke")
  1515.  
  1516. SliderFrameStroke.Thickness = 1
  1517. SliderFrameStroke.Name = ""
  1518. SliderFrameStroke.Parent = SliderFrame
  1519. SliderFrameStroke.LineJoinMode = Enum.LineJoinMode.Round
  1520. SliderFrameStroke.Color = Color3.fromRGB(255, 255, 255)
  1521. SliderFrameStroke.Transparency = 0.7
  1522.  
  1523.  
  1524.  
  1525. SliderFrame.MouseEnter:Connect(function()
  1526. TweenService:Create(
  1527. SliderFrameStroke,
  1528. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1529. {Transparency = 0} -- UDim2.new(0, 128, 0, 25)
  1530. ):Play()
  1531. end
  1532. )
  1533.  
  1534. SliderFrame.MouseLeave:Connect(function()
  1535. TweenService:Create(
  1536. SliderFrameStroke,
  1537. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1538. {Transparency = 0.7} -- UDim2.new(0, 128, 0, 25)
  1539. ):Play()
  1540. end
  1541. )
  1542.  
  1543. local LabelNameSliderxd = Instance.new("TextLabel")
  1544.  
  1545. LabelNameSliderxd.Parent = SliderFrame
  1546. LabelNameSliderxd.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1547. LabelNameSliderxd.BackgroundTransparency = 1
  1548. LabelNameSliderxd.BorderSizePixel = 0
  1549. LabelNameSliderxd.Position = UDim2.new(0.35, 0, 0.2, 0)
  1550. LabelNameSliderxd.AnchorPoint = Vector2.new(0.5, 0.5)
  1551. LabelNameSliderxd.Size = UDim2.new(0, 120, 0, 20)
  1552. LabelNameSliderxd.Font = Enum.Font.GothamBold
  1553. LabelNameSliderxd.Text = tostring(text)
  1554. LabelNameSliderxd.TextColor3 = Color3.fromRGB(255, 255, 255)
  1555. LabelNameSliderxd.TextSize = 11.000
  1556. LabelNameSliderxd.TextXAlignment = Enum.TextXAlignment.Left
  1557.  
  1558.  
  1559. local ShowValueFarm = Instance.new("Frame")
  1560.  
  1561. ShowValueFarm.Name = "ShowValueFarm"
  1562. ShowValueFarm.Parent = SliderFrame
  1563. ShowValueFarm.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  1564. ShowValueFarm.Position = UDim2.new(0.0833333358, 0, 0.235135213, 0)
  1565. ShowValueFarm.Size = UDim2.new(0, 75, 0, 15)
  1566. ShowValueFarm.BackgroundTransparency = 0
  1567. ShowValueFarm.BorderSizePixel = 0
  1568. ShowValueFarm.AnchorPoint = Vector2.new(0.5, 0.5)
  1569. ShowValueFarm.Position = UDim2.new(0.8, 0, 0.2, 0)
  1570. ShowValueFarm.ClipsDescendants = false
  1571.  
  1572. local CustomValue = Instance.new("TextBox")
  1573.  
  1574. CustomValue.Parent = ShowValueFarm
  1575. CustomValue.BackgroundColor3 = Color3.fromRGB(45,45, 45)
  1576. CustomValue.BorderSizePixel = 0
  1577. CustomValue.ClipsDescendants = true
  1578. CustomValue.AnchorPoint = Vector2.new(0.5, 0.5)
  1579. CustomValue.Position = UDim2.new(0.5, 0, 0.5, 0)
  1580. CustomValue.Size = UDim2.new(0, 158, 0, 26)
  1581. CustomValue.Font = Enum.Font.GothamSemibold
  1582. CustomValue.PlaceholderColor3 = Color3.fromRGB(222, 222, 222)
  1583. CustomValue.PlaceholderText = ""
  1584. if floor == true then
  1585. CustomValue.Text = tostring(de and string.format("%.1f",(de / max) * (max - min) + min) or 0)
  1586. else
  1587. CustomValue.Text = tostring(de and math.floor( (de / max) * (max - min) + min) or 0)
  1588. end
  1589. CustomValue.TextColor3 = Color3.fromRGB(255, 255, 255)
  1590. CustomValue.TextSize = 8.000
  1591. CustomValue.BackgroundTransparency = 1
  1592.  
  1593. local ValueFrame = Instance.new("Frame")
  1594.  
  1595. ValueFrame.Name = "ValueFrame"
  1596. ValueFrame.Parent = SliderFrame
  1597. ValueFrame.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  1598. ValueFrame.Position = UDim2.new(0.0833333358, 0, 0.235135213, 0)
  1599. ValueFrame.Size = UDim2.new(0, 190, 0, 5)
  1600. ValueFrame.BackgroundTransparency = 0
  1601. ValueFrame.BorderSizePixel = 0
  1602. ValueFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  1603. ValueFrame.Position = UDim2.new(0.5, 0, 0.8, 0)
  1604. ValueFrame.ClipsDescendants = false
  1605.  
  1606.  
  1607. local PartValue = Instance.new("Frame")
  1608.  
  1609. PartValue.Name = "PartValue"
  1610. PartValue.Parent = ValueFrame
  1611. PartValue.BackgroundColor3 = Color3.fromRGB(222, 222, 222)
  1612. PartValue.Position = UDim2.new(0.0833333358, 0, 0.235135213, 0)
  1613. PartValue.Size = UDim2.new(0, 190, 0, 5)
  1614. PartValue.BackgroundTransparency = 1
  1615. PartValue.BorderSizePixel = 0
  1616. PartValue.AnchorPoint = Vector2.new(0.5, 0.5)
  1617. PartValue.Position = UDim2.new(0.5, 0, 0.5, 0)
  1618. PartValue.ClipsDescendants = false
  1619.  
  1620. local MainValue = Instance.new("Frame")
  1621.  
  1622. MainValue.Name = "MainValue"
  1623. MainValue.Parent = PartValue
  1624. MainValue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1625. MainValue.Size = UDim2.new((de or 0) / max, 0, 0, 5)
  1626. MainValue.BackgroundTransparency = 0
  1627. MainValue.BorderSizePixel = 0
  1628. -- MainValue.AnchorPoint = Vector2.new(0.5, 0.5)
  1629. MainValue.Position = UDim2.new(0., 0, 0.0, 0)
  1630. MainValue.ClipsDescendants = false
  1631.  
  1632. local Conner_S1 = Instance.new("UICorner")
  1633.  
  1634. Conner_S1.CornerRadius = UDim.new(0, 8)
  1635. Conner_S1.Name = ""
  1636. Conner_S1.Parent = MainValue
  1637.  
  1638. local Conner_S2 = Instance.new("UICorner")
  1639.  
  1640. Conner_S2.CornerRadius = UDim.new(0, 8)
  1641. Conner_S2.Name = ""
  1642. Conner_S2.Parent = ValueFrame
  1643.  
  1644. local ConneValue = Instance.new("Frame")
  1645.  
  1646. ConneValue.Name = "ConneValue"
  1647. ConneValue.Parent = PartValue
  1648. ConneValue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1649. ConneValue.Size = UDim2.new(0, 13, 0,13)
  1650. ConneValue.BackgroundTransparency = 0
  1651. ConneValue.BorderSizePixel = 0
  1652. ConneValue.AnchorPoint = Vector2.new(0.5, 0.5)
  1653. ConneValue.Position = UDim2.new((de or 0)/max, 0.5, 0.3,0.5, 0)
  1654. ConneValue.ClipsDescendants = false
  1655.  
  1656.  
  1657. local Conner_Conne = Instance.new("UICorner")
  1658.  
  1659. Conner_Conne.CornerRadius = UDim.new(0, 300)
  1660. Conner_Conne.Name = ""
  1661. Conner_Conne.Parent = ConneValue
  1662.  
  1663. local Addvalue = Instance.new("ImageButton")
  1664.  
  1665. Addvalue.Name = "Imatog"
  1666. Addvalue.Parent = SliderFrame
  1667. Addvalue.BackgroundTransparency = 1.000
  1668. Addvalue.BorderSizePixel = 0
  1669. Addvalue.Position = UDim2.new(0.85, 0, 0.35, 0)
  1670. Addvalue.Size = UDim2.new(0, 15, 0, 15)
  1671. Addvalue.Image = "http://www.roblox.com/asset/?id=6035067836"
  1672. Addvalue.ImageColor3 = Color3.fromRGB(255, 255, 255)
  1673.  
  1674. local Deletevalue = Instance.new("ImageButton")
  1675.  
  1676. Deletevalue.Name = "Imatog"
  1677. Deletevalue.Parent = SliderFrame
  1678. Deletevalue.BackgroundTransparency = 1.000
  1679. Deletevalue.BorderSizePixel = 0
  1680. Deletevalue.Position = UDim2.new(0.7, 0, 0.35, 0)
  1681. Deletevalue.Size = UDim2.new(0, 15, 0, 15)
  1682. Deletevalue.Image = "http://www.roblox.com/asset/?id=6035047377"
  1683. Deletevalue.ImageColor3 = Color3.fromRGB(255, 255, 255)
  1684.  
  1685. local function move(input)
  1686. local pos =
  1687. UDim2.new(
  1688. math.clamp((input.Position.X - ValueFrame.AbsolutePosition.X) / ValueFrame.AbsoluteSize.X, 0, 1),
  1689. 0,
  1690. 0.3,
  1691. 0
  1692. )
  1693. local pos1 =
  1694. UDim2.new(
  1695. math.clamp((input.Position.X - ValueFrame.AbsolutePosition.X) / ValueFrame.AbsoluteSize.X, 0, 1),
  1696. 0,
  1697. 0,
  1698. 5
  1699. )
  1700.  
  1701. MainValue:TweenSize(pos1, "Out", "Sine", 0.2, true)
  1702.  
  1703. ConneValue:TweenPosition(pos, "Out", "Sine", 0.2, true)
  1704. if floor == true then
  1705. local value = string.format("%.1f",((pos.X.Scale * max) / max) * (max - min) + min)
  1706. CustomValue.Text = tostring(value)
  1707. callback(value)
  1708. else
  1709. local value = math.floor(((pos.X.Scale * max) / max) * (max - min) + min)
  1710. CustomValue.Text = tostring(value)
  1711. callback(value)
  1712. end
  1713.  
  1714.  
  1715.  
  1716. end
  1717.  
  1718. local dragging = false
  1719. ConneValue.InputBegan:Connect(
  1720. function(input)
  1721. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1722. dragging = true
  1723.  
  1724. end
  1725. end
  1726. )
  1727. ConneValue.InputEnded:Connect(
  1728. function(input)
  1729. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1730. dragging = false
  1731.  
  1732. end
  1733. end
  1734. )
  1735. SliderFrame.InputBegan:Connect(
  1736. function(input)
  1737. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1738. dragging = true
  1739.  
  1740. end
  1741. end
  1742. )
  1743. SliderFrame.InputEnded:Connect(
  1744. function(input)
  1745. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1746. dragging = false
  1747.  
  1748. end
  1749. end
  1750. )
  1751.  
  1752.  
  1753. ValueFrame.InputBegan:Connect(
  1754. function(input)
  1755. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1756. dragging = true
  1757.  
  1758. end
  1759. end
  1760. )
  1761. ValueFrame.InputEnded:Connect(
  1762. function(input)
  1763. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1764. dragging = false
  1765.  
  1766. end
  1767. end
  1768. )
  1769.  
  1770. game:GetService("UserInputService").InputChanged:Connect(
  1771. function(input)
  1772. if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then
  1773. move(input)
  1774. end
  1775. end
  1776. )
  1777.  
  1778. CustomValue.FocusLost:Connect(function()
  1779. if CustomValue.Text == "" then
  1780. CustomValue.Text = de
  1781. end
  1782. if tonumber(CustomValue.Text) > max then
  1783. CustomValue.Text = max
  1784. end
  1785. MainValue:TweenSize(UDim2.new((CustomValue.Text or 0) / max, 0, 0, 5), "Out", "Sine", 0.2, true)
  1786. ConneValue:TweenPosition(UDim2.new((CustomValue.Text or 0)/max, 0,0, 0) , "Out", "Sine", 0.2, true)
  1787. if floor == true then
  1788. CustomValue.Text = tostring(CustomValue.Text and string.format("%.1f",(CustomValue.Text / max) * (max - min) + min) )
  1789. else
  1790. CustomValue.Text = tostring(CustomValue.Text and math.floor( (CustomValue.Text / max) * (max - min) + min) )
  1791. end
  1792. pcall(callback, CustomValue.Text)
  1793. end)
  1794.  
  1795.  
  1796. Addvalue.MouseButton1Click:Connect(function ()
  1797. if CustomValue.Text == "" then
  1798. CustomValue.Text = de
  1799. end
  1800. CustomValue.Text = CustomValue.Text - tonumber(lol)
  1801. if tonumber(CustomValue.Text) > max then
  1802. CustomValue.Text = max
  1803. end
  1804. if tonumber(CustomValue.Text) < min then
  1805. CustomValue.Text = min
  1806. end
  1807. MainValue:TweenSize(UDim2.new((CustomValue.Text or 0 ) / max, 0, 0, 5), "Out", "Sine", 0.2, true)
  1808. ConneValue:TweenPosition(UDim2.new((CustomValue.Text or 0)/max, 0,0.5, 0) , "Out", "Sine", 0.2, true)
  1809. if floor == true then
  1810. CustomValue.Text = tostring(CustomValue.Text and string.format("%.1f",(CustomValue.Text / max) * (max - min) + min) )
  1811. else
  1812. CustomValue.Text = tostring(CustomValue.Text and math.floor( (CustomValue.Text / max) * (max - min) + min) )
  1813. end
  1814. pcall(callback, CustomValue.Text)
  1815. end)
  1816.  
  1817. Deletevalue.MouseButton1Click:Connect(function ()
  1818. if CustomValue.Text == "" then
  1819. CustomValue.Text = de
  1820. end
  1821. CustomValue.Text = CustomValue.Text + tonumber(lol)
  1822. if tonumber(CustomValue.Text) > max then
  1823. CustomValue.Text = max
  1824. end
  1825. if tonumber(CustomValue.Text) < min then
  1826. CustomValue.Text = min
  1827. end
  1828. MainValue:TweenSize(UDim2.new((CustomValue.Text or 0 ) / max, 0, 0, 5), "Out", "Sine", 0.2, true)
  1829. ConneValue:TweenPosition(UDim2.new((CustomValue.Text or 0)/max, 0,0.5, 0) , "Out", "Sine", 0.2, true)
  1830. if floor == true then
  1831. CustomValue.Text = tostring(CustomValue.Text and string.format("%.1f",(CustomValue.Text / max) * (max - min) + min) )
  1832. else
  1833. CustomValue.Text = tostring(CustomValue.Text and math.floor( (CustomValue.Text / max) * (max - min) + min) )
  1834. end
  1835. pcall(callback, CustomValue.Text)
  1836. end)
  1837.  
  1838. end
  1839.  
  1840. end
  1841.  
  1842. function items:Drop(text,use,option,callback)
  1843.  
  1844. if use == false then
  1845. local DropFrame = Instance.new("Frame")
  1846.  
  1847. DropFrame.Name = "DropFrame"
  1848. DropFrame.Parent = ScrollingFrame_Pageframe
  1849. DropFrame.BackgroundColor3 = Color3.fromRGB(23, 23, 23)-- Color3.fromRGB(255, 255, 255)
  1850. DropFrame.BorderSizePixel = 0
  1851. DropFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  1852. DropFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  1853. DropFrame.Size = UDim2.new(0, 213, 0, 30) -- UDim2.new(0, 213, 0, 35)
  1854. DropFrame.BackgroundTransparency = 0
  1855. DropFrame.ClipsDescendants = true
  1856.  
  1857. local ConnerDropFrame = Instance.new("UICorner")
  1858.  
  1859. ConnerDropFrame.CornerRadius = UDim.new(0, 4)
  1860. ConnerDropFrame.Name = ""
  1861. ConnerDropFrame.Parent = DropFrame
  1862.  
  1863. local DropFrameStroke = Instance.new("UIStroke")
  1864.  
  1865. DropFrameStroke.Thickness = 1
  1866. DropFrameStroke.Name = ""
  1867. DropFrameStroke.Parent = DropFrame
  1868. DropFrameStroke.LineJoinMode = Enum.LineJoinMode.Round
  1869. DropFrameStroke.Color = Color3.fromRGB(255, 255, 255)
  1870. DropFrameStroke.Transparency = 0.7
  1871.  
  1872.  
  1873.  
  1874.  
  1875.  
  1876. local LabelFrameDrop = Instance.new("TextLabel")
  1877.  
  1878. LabelFrameDrop.Parent = DropFrame
  1879. LabelFrameDrop.Name = "LabelFrameDrop"
  1880. LabelFrameDrop.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1881. LabelFrameDrop.Position = UDim2.new(0., 0, 0., 0)
  1882. LabelFrameDrop.Size = UDim2.new(0, 213, 0, 30)
  1883. LabelFrameDrop.Font = Enum.Font.SourceSansSemibold
  1884. LabelFrameDrop.Text = ""
  1885. LabelFrameDrop.TextColor3 = Color3.fromRGB(155, 155, 155)
  1886. LabelFrameDrop.TextSize = 14.000
  1887. -- LabelFrameDrop.AnchorPoint = Vector2.new(0.5, 0.5)
  1888. LabelFrameDrop.BackgroundTransparency = 1
  1889. LabelFrameDrop.TextXAlignment = Enum.TextXAlignment.Left
  1890.  
  1891.  
  1892. local TextLabel_TapDrop = Instance.new("TextLabel")
  1893.  
  1894. TextLabel_TapDrop.Parent = LabelFrameDrop
  1895. TextLabel_TapDrop.Name = "TextLabel_TapDrop"
  1896. TextLabel_TapDrop.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1897. TextLabel_TapDrop.Position = UDim2.new(0.04, 0, 0.14, 0)
  1898. TextLabel_TapDrop.Size = UDim2.new(0, 140, 0, 20)
  1899. TextLabel_TapDrop.Font = Enum.Font.SourceSansSemibold
  1900. TextLabel_TapDrop.Text = tostring(text).." :"
  1901. TextLabel_TapDrop.TextColor3 = Color3.fromRGB(155, 155, 155)
  1902. TextLabel_TapDrop.TextSize = 14.000
  1903. -- TextLabel_TapDrop.AnchorPoint = Vector2.new(0.5, 0.5)
  1904. TextLabel_TapDrop.BackgroundTransparency = 1
  1905. TextLabel_TapDrop.TextXAlignment = Enum.TextXAlignment.Left
  1906.  
  1907.  
  1908. local DropArbt_listimage = Instance.new("ImageButton")
  1909.  
  1910. DropArbt_listimage.Parent = LabelFrameDrop
  1911. DropArbt_listimage.BackgroundTransparency = 1.000
  1912. DropArbt_listimage.AnchorPoint = Vector2.new(0.5, 0.5)
  1913. DropArbt_listimage.Position = UDim2.new(0.9, 0, 0.5, 0)
  1914. DropArbt_listimage.BorderSizePixel = 0
  1915. DropArbt_listimage.Size = UDim2.new(0, 25, 0, 25)
  1916. DropArbt_listimage.Image = "http://www.roblox.com/asset/?id=6031091004"
  1917. DropArbt_listimage.ImageColor3 = Color3.fromRGB(155, 155, 155)
  1918.  
  1919. local ScolDown = Instance.new("ScrollingFrame")
  1920.  
  1921. ScolDown.Name = "ScolDown"
  1922. ScolDown.Position = UDim2.new(0.02, 0, 1., 0)
  1923. ScolDown.Parent = LabelFrameDrop
  1924. ScolDown.Active = true
  1925. ScolDown.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1926. ScolDown.BorderSizePixel = 0
  1927. ScolDown.Size = UDim2.new(0, 205, 0, 115)
  1928. ScolDown.ScrollBarThickness = 3
  1929. ScolDown.ClipsDescendants = true
  1930. ScolDown.BackgroundTransparency = 1
  1931. ScolDown.CanvasSize = UDim2.new(0, 0, 0, 2)
  1932.  
  1933. local UIListLayoutlist = Instance.new("UIListLayout")
  1934. local UIPaddinglist = Instance.new("UIPadding")
  1935.  
  1936. UIListLayoutlist.Name = "UIListLayoutlist"
  1937. UIListLayoutlist.Parent = ScolDown
  1938. UIListLayoutlist.SortOrder = Enum.SortOrder.LayoutOrder
  1939. UIListLayoutlist.Padding = UDim.new(0, 5)
  1940.  
  1941. UIPaddinglist.Name = "UIPaddinglist"
  1942. UIPaddinglist.Parent = ScolDown
  1943. UIPaddinglist.PaddingTop = UDim.new(0, 5)
  1944. UIPaddinglist.PaddingLeft = UDim.new(0, 12)
  1945.  
  1946. local ButtonDrop = Instance.new("TextButton")
  1947.  
  1948. ButtonDrop.Parent = DropFrame
  1949. ButtonDrop.Name = "ButtonDrop"
  1950. ButtonDrop.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1951. ButtonDrop.Size = UDim2.new(0, 213, 0, 30)
  1952. ButtonDrop.Font = Enum.Font.SourceSansSemibold
  1953. ButtonDrop.Text = ""
  1954. ButtonDrop.TextColor3 = Color3.fromRGB(155, 155, 155)
  1955. ButtonDrop.TextSize = 13.000
  1956. -- ButtonDrop.AnchorPoint = Vector2.new(0.5, 0.5)
  1957. ButtonDrop.Position = UDim2.new(0., 0, 0., 0)
  1958. ButtonDrop.TextXAlignment = Enum.TextXAlignment.Center
  1959. ButtonDrop.BackgroundTransparency = 1
  1960. ButtonDrop.TextWrapped = true
  1961. ButtonDrop.AutoButtonColor = false
  1962. ButtonDrop.ClipsDescendants = true
  1963.  
  1964. local dog = false
  1965.  
  1966. local FrameSize = 75
  1967. local cout = 0
  1968. for i , v in pairs(option) do
  1969. cout =cout + 1
  1970. if cout == 1 then
  1971. FrameSize = 75
  1972. elseif cout == 2 then
  1973. FrameSize = 110
  1974. elseif cout >= 3 then
  1975. FrameSize = 150
  1976. end
  1977.  
  1978. local ListFrame = Instance.new("Frame")
  1979.  
  1980. ListFrame.Name = "ListFrame"
  1981. ListFrame.Parent = ScolDown
  1982. ListFrame.BackgroundColor3 = Color3.fromRGB(255,255,255)-- Color3.fromRGB(255, 255, 255)
  1983. ListFrame.BorderSizePixel = 0
  1984. ListFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  1985. ListFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  1986. ListFrame.Size = UDim2.new(0, 180, 0, 30) -- UDim2.new(0, 213, 0, 35)
  1987. ListFrame.BackgroundTransparency = 1
  1988. ListFrame.ClipsDescendants = true
  1989.  
  1990. local TextLabel_TapDro2p = Instance.new("TextLabel")
  1991.  
  1992. TextLabel_TapDro2p.Parent = ListFrame
  1993. TextLabel_TapDro2p.Name = tostring(v).."Dropdown"
  1994. TextLabel_TapDro2p.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1995. TextLabel_TapDro2p.Position = UDim2.new(0.5, 0, 0.5, 0)
  1996. TextLabel_TapDro2p.Size = UDim2.new(0, 180, 0, 30)
  1997. TextLabel_TapDro2p.Font = Enum.Font.SourceSansSemibold
  1998. TextLabel_TapDro2p.Text = tostring(v)
  1999. TextLabel_TapDro2p.TextColor3 = Color3.fromRGB(155, 155, 155)
  2000. TextLabel_TapDro2p.TextSize = 14.000
  2001. TextLabel_TapDro2p.AnchorPoint = Vector2.new(0.5, 0.5)
  2002. TextLabel_TapDro2p.BackgroundTransparency = 1
  2003. TextLabel_TapDro2p.TextXAlignment = Enum.TextXAlignment.Center
  2004.  
  2005. local ButtonDrop2 = Instance.new("TextButton")
  2006.  
  2007. ButtonDrop2.Parent = ListFrame
  2008. ButtonDrop2.Name = "ButtonDrop2"
  2009. ButtonDrop2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2010. ButtonDrop2.Size = UDim2.new(0, 213, 0, 30)
  2011. ButtonDrop2.Font = Enum.Font.SourceSansSemibold
  2012. ButtonDrop2.Text = ""
  2013. ButtonDrop2.TextColor3 = Color3.fromRGB(155, 155, 155)
  2014. ButtonDrop2.TextSize = 13.000
  2015. -- ButtonDrop2.AnchorPoint = Vector2.new(0.5, 0.5)
  2016. ButtonDrop2.Position = UDim2.new(0., 0, 0., 0)
  2017. ButtonDrop2.TextXAlignment = Enum.TextXAlignment.Center
  2018. ButtonDrop2.BackgroundTransparency = 1
  2019. ButtonDrop2.TextWrapped = true
  2020. ButtonDrop2.AutoButtonColor = false
  2021. ButtonDrop2.ClipsDescendants = true
  2022.  
  2023. ButtonDrop2.MouseEnter:Connect(function ()
  2024. TweenService:Create(
  2025. TextLabel_TapDro2p,
  2026. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2027. {TextColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2028. ):Play()
  2029. end)
  2030.  
  2031. ButtonDrop2.MouseLeave:Connect(function ()
  2032. TweenService:Create(
  2033. TextLabel_TapDro2p,
  2034. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2035. {TextColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2036. ):Play()
  2037. end)
  2038.  
  2039. ButtonDrop2.MouseButton1Click:Connect(function()
  2040. TweenService:Create(
  2041. DropFrame,
  2042. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2043. {Size = UDim2.new(0, 213, 0, 30)} -- UDim2.new(0, 128, 0, 25)
  2044. ):Play()
  2045. TweenService:Create(
  2046. DropArbt_listimage,
  2047. TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  2048. {Rotation = 0}
  2049. ):Play()
  2050. TextLabel_TapDrop.Text = text.." : "..tostring(v)
  2051. callback(v)
  2052. dog = not dog
  2053. end
  2054. )
  2055.  
  2056.  
  2057. ScolDown.CanvasSize = UDim2.new(0,0,0,UIListLayoutlist.AbsoluteContentSize.Y + 10 )
  2058. end
  2059.  
  2060.  
  2061. DropFrame.MouseEnter:Connect(function()
  2062. TweenService:Create(
  2063. DropFrameStroke,
  2064. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2065. {Transparency = 0} -- UDim2.new(0, 128, 0, 25)
  2066. ):Play()
  2067. TweenService:Create(
  2068. TextLabel_TapDrop,
  2069. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2070. {TextColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2071. ):Play()
  2072. TweenService:Create(
  2073. DropArbt_listimage,
  2074. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2075. {ImageColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2076. ):Play()
  2077. end
  2078. )
  2079.  
  2080. DropFrame.MouseLeave:Connect(function()
  2081. TweenService:Create(
  2082. DropFrameStroke,
  2083. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2084. {Transparency = 0.7} -- UDim2.new(0, 128, 0, 25)
  2085. ):Play()
  2086. TweenService:Create(
  2087. TextLabel_TapDrop,
  2088. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2089. {TextColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2090. ):Play()
  2091. TweenService:Create(
  2092. DropArbt_listimage,
  2093. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2094. {ImageColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2095. ):Play()
  2096. end
  2097. )
  2098.  
  2099.  
  2100. ButtonDrop.MouseButton1Click:Connect(function()
  2101. if dog == false then
  2102. TweenService:Create(
  2103. DropFrame,
  2104. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2105. {Size = UDim2.new(0, 213, 0, FrameSize)} -- UDim2.new(0, 128, 0, 25)
  2106. ):Play()
  2107. TweenService:Create(
  2108. DropArbt_listimage,
  2109. TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  2110. {Rotation = -180}
  2111. ):Play()
  2112. ScolDown.CanvasSize = UDim2.new(0,0,0,UIListLayoutlist.AbsoluteContentSize.Y + 10 )
  2113. else
  2114. TweenService:Create(
  2115. DropFrame,
  2116. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2117. {Size = UDim2.new(0, 213, 0, 30)} -- UDim2.new(0, 128, 0, 25)
  2118. ):Play()
  2119. TweenService:Create(
  2120. DropArbt_listimage,
  2121. TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  2122. {Rotation = 0}
  2123. ):Play()
  2124. ScolDown.CanvasSize = UDim2.new(0,0,0,UIListLayoutlist.AbsoluteContentSize.Y + 10 )
  2125. end
  2126. dog = not dog
  2127. end
  2128. )
  2129. ScolDown.CanvasSize = UDim2.new(0,0,0,UIListLayoutlist.AbsoluteContentSize.Y + 10 )
  2130.  
  2131. local dropfunc = {}
  2132.  
  2133. function dropfunc:Clear()
  2134. TextLabel_TapDrop.Text = tostring(text).." :"
  2135. for i, v in next, ScolDown:GetChildren() do
  2136. if v:IsA("Frame") then
  2137. v:Destroy()
  2138. end
  2139. end
  2140. ScolDown.CanvasSize = UDim2.new(0,0,0,UIListLayoutlist.AbsoluteContentSize.Y + 10 )
  2141. end
  2142.  
  2143. function dropfunc:Add(t)
  2144. local ListFrame = Instance.new("Frame")
  2145.  
  2146. ListFrame.Name = "ListFrame"
  2147. ListFrame.Parent = ScolDown
  2148. ListFrame.BackgroundColor3 = Color3.fromRGB(255,255,255)-- Color3.fromRGB(255, 255, 255)
  2149. ListFrame.BorderSizePixel = 0
  2150. ListFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  2151. ListFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  2152. ListFrame.Size = UDim2.new(0, 180, 0, 30) -- UDim2.new(0, 213, 0, 35)
  2153. ListFrame.BackgroundTransparency = 1
  2154. ListFrame.ClipsDescendants = true
  2155.  
  2156. local TextLabel_TapDro2p = Instance.new("TextLabel")
  2157.  
  2158. TextLabel_TapDro2p.Parent = ListFrame
  2159. TextLabel_TapDro2p.Name = tostring(t).."Dropdown"
  2160. TextLabel_TapDro2p.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2161. TextLabel_TapDro2p.Position = UDim2.new(0.5, 0, 0.5, 0)
  2162. TextLabel_TapDro2p.Size = UDim2.new(0, 180, 0, 30)
  2163. TextLabel_TapDro2p.Font = Enum.Font.SourceSansSemibold
  2164. TextLabel_TapDro2p.Text = tostring(t)
  2165. TextLabel_TapDro2p.TextColor3 = Color3.fromRGB(155, 155, 155)
  2166. TextLabel_TapDro2p.TextSize = 14.000
  2167. TextLabel_TapDro2p.AnchorPoint = Vector2.new(0.5, 0.5)
  2168. TextLabel_TapDro2p.BackgroundTransparency = 1
  2169. TextLabel_TapDro2p.TextXAlignment = Enum.TextXAlignment.Center
  2170.  
  2171. local ButtonDrop2 = Instance.new("TextButton")
  2172.  
  2173. ButtonDrop2.Parent = ListFrame
  2174. ButtonDrop2.Name = "ButtonDrop2"
  2175. ButtonDrop2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2176. ButtonDrop2.Size = UDim2.new(0, 213, 0, 30)
  2177. ButtonDrop2.Font = Enum.Font.SourceSansSemibold
  2178. ButtonDrop2.Text = ""
  2179. ButtonDrop2.TextColor3 = Color3.fromRGB(155, 155, 155)
  2180. ButtonDrop2.TextSize = 13.000
  2181. -- ButtonDrop2.AnchorPoint = Vector2.new(0.5, 0.5)
  2182. ButtonDrop2.Position = UDim2.new(0., 0, 0., 0)
  2183. ButtonDrop2.TextXAlignment = Enum.TextXAlignment.Center
  2184. ButtonDrop2.BackgroundTransparency = 1
  2185. ButtonDrop2.TextWrapped = true
  2186. ButtonDrop2.AutoButtonColor = false
  2187. ButtonDrop2.ClipsDescendants = true
  2188.  
  2189. ButtonDrop2.MouseEnter:Connect(function ()
  2190. TweenService:Create(
  2191. TextLabel_TapDro2p,
  2192. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2193. {TextColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2194. ):Play()
  2195. end)
  2196.  
  2197. ButtonDrop2.MouseLeave:Connect(function ()
  2198. TweenService:Create(
  2199. TextLabel_TapDro2p,
  2200. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2201. {TextColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2202. ):Play()
  2203. end)
  2204.  
  2205. ButtonDrop2.MouseButton1Click:Connect(function()
  2206. TweenService:Create(
  2207. DropFrame,
  2208. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2209. {Size = UDim2.new(0, 213, 0, 30)} -- UDim2.new(0, 128, 0, 25)
  2210. ):Play()
  2211. TweenService:Create(
  2212. DropArbt_listimage,
  2213. TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  2214. {Rotation = 0}
  2215. ):Play()
  2216. TextLabel_TapDrop.Text = text.." : "..tostring(t)
  2217. callback(t)
  2218. dog = not dog
  2219. end
  2220. )
  2221.  
  2222. ScolDown.CanvasSize = UDim2.new(0,0,0,UIListLayoutlist.AbsoluteContentSize.Y + 10 )
  2223. end
  2224. return dropfunc
  2225.  
  2226. else
  2227.  
  2228. local location = option.location or self.flags
  2229. local flag = not use and option.flag or ""
  2230. local callback = callback or function() end
  2231. local list = option.list or {}
  2232. local default = list.default or list[1].Name
  2233.  
  2234. if not use then
  2235. location[flag] = default
  2236. end
  2237.  
  2238.  
  2239. local DropFrame = Instance.new("Frame")
  2240.  
  2241. DropFrame.Name = "DropFrame"
  2242. DropFrame.Parent = ScrollingFrame_Pageframe
  2243. DropFrame.BackgroundColor3 = Color3.fromRGB(23, 23, 23)-- Color3.fromRGB(255, 255, 255)
  2244. DropFrame.BorderSizePixel = 0
  2245. DropFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  2246. DropFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  2247. DropFrame.Size = UDim2.new(0, 213, 0, 30) -- UDim2.new(0, 213, 0, 35)
  2248. DropFrame.BackgroundTransparency = 0
  2249. DropFrame.ClipsDescendants = true
  2250.  
  2251. local ConnerDropFrame = Instance.new("UICorner")
  2252.  
  2253. ConnerDropFrame.CornerRadius = UDim.new(0, 4)
  2254. ConnerDropFrame.Name = ""
  2255. ConnerDropFrame.Parent = DropFrame
  2256.  
  2257. local DropFrameStroke = Instance.new("UIStroke")
  2258.  
  2259. DropFrameStroke.Thickness = 1
  2260. DropFrameStroke.Name = ""
  2261. DropFrameStroke.Parent = DropFrame
  2262. DropFrameStroke.LineJoinMode = Enum.LineJoinMode.Round
  2263. DropFrameStroke.Color = Color3.fromRGB(255, 255, 255)
  2264. DropFrameStroke.Transparency = 0.7
  2265.  
  2266.  
  2267.  
  2268.  
  2269.  
  2270. local LabelFrameDrop = Instance.new("TextLabel")
  2271.  
  2272. LabelFrameDrop.Parent = DropFrame
  2273. LabelFrameDrop.Name = "LabelFrameDrop"
  2274. LabelFrameDrop.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2275. LabelFrameDrop.Position = UDim2.new(0., 0, 0., 0)
  2276. LabelFrameDrop.Size = UDim2.new(0, 213, 0, 30)
  2277. LabelFrameDrop.Font = Enum.Font.SourceSansSemibold
  2278. LabelFrameDrop.Text = ""
  2279. LabelFrameDrop.TextColor3 = Color3.fromRGB(155, 155, 155)
  2280. LabelFrameDrop.TextSize = 14.000
  2281. -- LabelFrameDrop.AnchorPoint = Vector2.new(0.5, 0.5)
  2282. LabelFrameDrop.BackgroundTransparency = 1
  2283. LabelFrameDrop.TextXAlignment = Enum.TextXAlignment.Left
  2284.  
  2285.  
  2286. local TextLabel_TapDrop = Instance.new("TextLabel")
  2287.  
  2288. TextLabel_TapDrop.Parent = LabelFrameDrop
  2289. TextLabel_TapDrop.Name = "TextLabel_TapDrop"
  2290. TextLabel_TapDrop.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2291. TextLabel_TapDrop.Position = UDim2.new(0.04, 0, 0.14, 0)
  2292. TextLabel_TapDrop.Size = UDim2.new(0, 140, 0, 20)
  2293. TextLabel_TapDrop.Font = Enum.Font.SourceSansSemibold
  2294. TextLabel_TapDrop.Text = tostring(text).." :"
  2295. TextLabel_TapDrop.TextColor3 = Color3.fromRGB(155, 155, 155)
  2296. TextLabel_TapDrop.TextSize = 14.000
  2297. -- TextLabel_TapDrop.AnchorPoint = Vector2.new(0.5, 0.5)
  2298. TextLabel_TapDrop.BackgroundTransparency = 1
  2299. TextLabel_TapDrop.TextXAlignment = Enum.TextXAlignment.Left
  2300.  
  2301.  
  2302. local DropArbt_listimage = Instance.new("ImageButton")
  2303.  
  2304. DropArbt_listimage.Parent = LabelFrameDrop
  2305. DropArbt_listimage.BackgroundTransparency = 1.000
  2306. DropArbt_listimage.AnchorPoint = Vector2.new(0.5, 0.5)
  2307. DropArbt_listimage.Position = UDim2.new(0.9, 0, 0.5, 0)
  2308. DropArbt_listimage.BorderSizePixel = 0
  2309. DropArbt_listimage.Size = UDim2.new(0, 25, 0, 25)
  2310. DropArbt_listimage.Image = "http://www.roblox.com/asset/?id=6031091004"
  2311. DropArbt_listimage.ImageColor3 = Color3.fromRGB(155, 155, 155)
  2312.  
  2313. local ScolDown = Instance.new("ScrollingFrame")
  2314.  
  2315. ScolDown.Name = "ScolDown"
  2316. ScolDown.Position = UDim2.new(0.02, 0, 1., 0)
  2317. ScolDown.Parent = LabelFrameDrop
  2318. ScolDown.Active = true
  2319. ScolDown.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2320. ScolDown.BorderSizePixel = 0
  2321. ScolDown.Size = UDim2.new(0, 205, 0, 115)
  2322. ScolDown.ScrollBarThickness = 3
  2323. ScolDown.ClipsDescendants = true
  2324. ScolDown.BackgroundTransparency = 1
  2325. ScolDown.CanvasSize = UDim2.new(0, 0, 0, 2)
  2326.  
  2327. local UIListLayoutlist = Instance.new("UIListLayout")
  2328. local UIPaddinglist = Instance.new("UIPadding")
  2329.  
  2330. UIListLayoutlist.Name = "UIListLayoutlist"
  2331. UIListLayoutlist.Parent = ScolDown
  2332. UIListLayoutlist.SortOrder = Enum.SortOrder.LayoutOrder
  2333. UIListLayoutlist.Padding = UDim.new(0, 5)
  2334.  
  2335. UIPaddinglist.Name = "UIPaddinglist"
  2336. UIPaddinglist.Parent = ScolDown
  2337. UIPaddinglist.PaddingTop = UDim.new(0, 5)
  2338. UIPaddinglist.PaddingLeft = UDim.new(0, 12)
  2339.  
  2340. local ButtonDrop = Instance.new("TextButton")
  2341.  
  2342. ButtonDrop.Parent = DropFrame
  2343. ButtonDrop.Name = "ButtonDrop"
  2344. ButtonDrop.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2345. ButtonDrop.Size = UDim2.new(0, 213, 0, 30)
  2346. ButtonDrop.Font = Enum.Font.SourceSansSemibold
  2347. ButtonDrop.Text = ""
  2348. ButtonDrop.TextColor3 = Color3.fromRGB(155, 155, 155)
  2349. ButtonDrop.TextSize = 13.000
  2350. -- ButtonDrop.AnchorPoint = Vector2.new(0.5, 0.5)
  2351. ButtonDrop.Position = UDim2.new(0., 0, 0., 0)
  2352. ButtonDrop.TextXAlignment = Enum.TextXAlignment.Center
  2353. ButtonDrop.BackgroundTransparency = 1
  2354. ButtonDrop.TextWrapped = true
  2355. ButtonDrop.AutoButtonColor = false
  2356. ButtonDrop.ClipsDescendants = true
  2357.  
  2358. local dog = false
  2359.  
  2360. local FrameSize = 75
  2361. local cout = 0
  2362. for i , v in pairs(list) do
  2363. cout =cout + 1
  2364. if cout == 1 then
  2365. FrameSize = 75
  2366. elseif cout == 2 then
  2367. FrameSize = 110
  2368. elseif cout >= 3 then
  2369. FrameSize = 150
  2370. end
  2371.  
  2372. local listtog = Instance.new("Frame")
  2373.  
  2374. listtog.Name = "listtog"
  2375. listtog.Parent = ScolDown
  2376. listtog.BackgroundColor3 = Color3.fromRGB(23, 23, 23)
  2377. listtog.BackgroundTransparency =1
  2378. listtog.BorderSizePixel = 0
  2379. listtog.ClipsDescendants = true
  2380. listtog.AnchorPoint = Vector2.new(0.5, 0.5)
  2381. listtog.Position = UDim2.new(0.5, 0, 0.5, 0)
  2382. listtog.Size = UDim2.new(0, 210, 0, 33)
  2383.  
  2384.  
  2385. local listtextbutton = Instance.new("TextButton")
  2386.  
  2387. listtextbutton.Parent = listtog
  2388. listtextbutton.BackgroundTransparency =1
  2389. listtextbutton.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  2390. listtextbutton.BorderSizePixel = 0
  2391. listtextbutton.Size = UDim2.new(0, 210, 0, 33)
  2392. listtextbutton.AutoButtonColor = false
  2393. listtextbutton.Font = Enum.Font.SourceSans
  2394. listtextbutton.Text = " "
  2395. listtextbutton.TextColor3 = Color3.fromRGB(0, 0, 0)
  2396. listtextbutton.TextSize = 14.000
  2397.  
  2398. local farmtoglist = Instance.new("TextButton")
  2399.  
  2400. farmtoglist.Parent = listtextbutton
  2401. farmtoglist.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2402. farmtoglist.BorderColor3 = Color3.fromRGB(255, 255, 255)
  2403. farmtoglist.BorderSizePixel = 0
  2404. farmtoglist.AnchorPoint = Vector2.new(0.5, 0.5)
  2405. farmtoglist.Position = UDim2.new(0.1, 0, 0.5, 0)
  2406. farmtoglist.Size = UDim2.new(0, 23, 0, 23)
  2407. farmtoglist.Font = Enum.Font.SourceSans
  2408. farmtoglist.Text = " "
  2409. farmtoglist.TextColor3 = Color3.fromRGB(0, 0, 0)
  2410. farmtoglist.TextSize = 14.000
  2411. farmtoglist.AutoButtonColor = false
  2412.  
  2413.  
  2414. local farmtoglist2 = Instance.new("TextButton")
  2415.  
  2416. farmtoglist2.Parent = farmtoglist
  2417. farmtoglist2.BackgroundColor3 = Color3.fromRGB(32, 32,32)
  2418. farmtoglist2.BorderColor3 = Color3.fromRGB(255, 255, 255)
  2419. farmtoglist2.BorderSizePixel = 0
  2420. farmtoglist2.AnchorPoint = Vector2.new(0.5, 0.5)
  2421. farmtoglist2.Position = UDim2.new(0.5, 0, 0.5, 0)
  2422. farmtoglist2.Size = UDim2.new(0, 21, 0, 21)
  2423. farmtoglist2.Font = Enum.Font.SourceSans
  2424. farmtoglist2.Text = " "
  2425. farmtoglist2.TextColor3 = Color3.fromRGB(0, 0, 0)
  2426. farmtoglist2.TextSize = 14.000
  2427. farmtoglist2.AutoButtonColor = false
  2428.  
  2429.  
  2430. local listimage = Instance.new("ImageButton")
  2431.  
  2432. listimage.Parent = farmtoglist2
  2433. listimage.BackgroundTransparency = 1.000
  2434. listimage.AnchorPoint = Vector2.new(0.5, 0.5)
  2435. listimage.Position = UDim2.new(0.5, 0, 0.5, 0)
  2436. listimage.BorderSizePixel = 0
  2437. listimage.Size = UDim2.new(0, 0, 0, 0)
  2438. listimage.Image = "http://www.roblox.com/asset/?id=5880482965"
  2439.  
  2440.  
  2441. local textlist = Instance.new("TextLabel")
  2442.  
  2443.  
  2444. textlist.Parent = listtextbutton
  2445. textlist.Name = "textlist"
  2446. textlist.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2447. textlist.BackgroundTransparency = 1.000
  2448. textlist.AnchorPoint = Vector2.new(0.5, 0.5)
  2449. textlist.Position = UDim2.new(0.5, 0, 0.5, 0)
  2450. textlist.BorderSizePixel = 0
  2451. textlist.Size = UDim2.new(0, 91, 0, 25)
  2452. textlist.Font = Enum.Font.GothamSemibold
  2453. textlist.Text = tostring(v.Name)
  2454. textlist.TextColor3 = Color3.fromRGB(255, 255, 255)
  2455. textlist.TextSize = 13.000
  2456.  
  2457.  
  2458.  
  2459. local TextButton_Pageframe_Uiconner2 = Instance.new("UICorner")
  2460.  
  2461. TextButton_Pageframe_Uiconner2.CornerRadius = UDim.new(0, 5)
  2462. TextButton_Pageframe_Uiconner2.Name = ""
  2463. TextButton_Pageframe_Uiconner2.Parent = farmtoglist
  2464.  
  2465. local TextButton_Pageframe_Uiconner22 = Instance.new("UICorner")
  2466.  
  2467. TextButton_Pageframe_Uiconner22.CornerRadius = UDim.new(0, 5)
  2468. TextButton_Pageframe_Uiconner22.Name = ""
  2469. TextButton_Pageframe_Uiconner22.Parent = farmtoglist2
  2470.  
  2471.  
  2472.  
  2473. listtextbutton.MouseButton1Click:Connect(function()
  2474. if not location[v.flag] then
  2475. listimage:TweenSizeAndPosition(UDim2.new(0, 30, 0, 30), UDim2.new(0.5, 0, 0.5, 0), "In", "Bounce", 0.1, true)
  2476. wait(0.1)
  2477. listimage:TweenSizeAndPosition(UDim2.new(0, 23, 0, 23), UDim2.new(0.5, 0, 0.5, 0), "In", "Bounce", 0.1, true)
  2478. else
  2479. listimage:TweenSizeAndPosition(UDim2.new(0, 30, 0, 30), UDim2.new(0.5, 0, 0.5, 0), "In", "Bounce", 0.1, true)
  2480. wait(0.1)
  2481. listimage:TweenSizeAndPosition(UDim2.new(0, 0, 0, 0), UDim2.new(0.5, 0, 0.5, 0), "In", "Bounce", 0.1, true)
  2482. end
  2483. location[v.flag] = not location[v.flag]
  2484. callback(location[v.flag])
  2485. end
  2486. )
  2487.  
  2488. if location[v.flag] then
  2489. listimage:TweenSizeAndPosition(UDim2.new(0, 30, 0, 30), UDim2.new(0.5, 0, 0.5, 0), "In", "Bounce", 0.1, true)
  2490. wait(0.1)
  2491. listimage:TweenSizeAndPosition(UDim2.new(0, 23, 0, 23), UDim2.new(0.5, 0, 0.5, 0), "In", "Bounce", 0.1, true)
  2492.  
  2493. callback(location[v.flag])
  2494. end
  2495.  
  2496. ScolDown.CanvasSize = UDim2.new(0,0,0,UIListLayoutlist.AbsoluteContentSize.Y + 10 )
  2497. end
  2498.  
  2499.  
  2500. DropFrame.MouseEnter:Connect(function()
  2501. TweenService:Create(
  2502. DropFrameStroke,
  2503. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2504. {Transparency = 0} -- UDim2.new(0, 128, 0, 25)
  2505. ):Play()
  2506. TweenService:Create(
  2507. TextLabel_TapDrop,
  2508. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2509. {TextColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2510. ):Play()
  2511. TweenService:Create(
  2512. DropArbt_listimage,
  2513. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2514. {ImageColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2515. ):Play()
  2516. end
  2517. )
  2518.  
  2519. DropFrame.MouseLeave:Connect(function()
  2520. TweenService:Create(
  2521. DropFrameStroke,
  2522. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2523. {Transparency = 0.7} -- UDim2.new(0, 128, 0, 25)
  2524. ):Play()
  2525. TweenService:Create(
  2526. TextLabel_TapDrop,
  2527. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2528. {TextColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2529. ):Play()
  2530. TweenService:Create(
  2531. DropArbt_listimage,
  2532. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2533. {ImageColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2534. ):Play()
  2535. end
  2536. )
  2537.  
  2538.  
  2539. ButtonDrop.MouseButton1Click:Connect(function()
  2540. if dog == false then
  2541. TweenService:Create(
  2542. DropFrame,
  2543. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2544. {Size = UDim2.new(0, 213, 0, FrameSize)} -- UDim2.new(0, 128, 0, 25)
  2545. ):Play()
  2546. TweenService:Create(
  2547. DropArbt_listimage,
  2548. TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  2549. {Rotation = -180}
  2550. ):Play()
  2551. ScolDown.CanvasSize = UDim2.new(0,0,0,UIListLayoutlist.AbsoluteContentSize.Y + 10 )
  2552. else
  2553. TweenService:Create(
  2554. DropFrame,
  2555. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2556. {Size = UDim2.new(0, 213, 0, 30)} -- UDim2.new(0, 128, 0, 25)
  2557. ):Play()
  2558. TweenService:Create(
  2559. DropArbt_listimage,
  2560. TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  2561. {Rotation = 0}
  2562. ):Play()
  2563. ScolDown.CanvasSize = UDim2.new(0,0,0,UIListLayoutlist.AbsoluteContentSize.Y + 10 )
  2564. end
  2565. dog = not dog
  2566. end
  2567. )
  2568. ScolDown.CanvasSize = UDim2.new(0,0,0,UIListLayoutlist.AbsoluteContentSize.Y + 10 )
  2569.  
  2570.  
  2571.  
  2572. end
  2573.  
  2574.  
  2575.  
  2576. end
  2577.  
  2578. function items:TextBox(text,text2,callback)
  2579. local TextFrame = Instance.new("Frame")
  2580.  
  2581. TextFrame.Name = "TextFrame"
  2582. TextFrame.Parent = ScrollingFrame_Pageframe
  2583. TextFrame.BackgroundColor3 = Color3.fromRGB(23, 23, 23)
  2584. TextFrame.BorderSizePixel = 0
  2585. TextFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  2586. TextFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  2587. TextFrame.Size = UDim2.new(0, 213, 0, 70)
  2588. TextFrame.BackgroundTransparency = 1
  2589. TextFrame.ClipsDescendants = true
  2590.  
  2591. local LabelNameSliderxd = Instance.new("TextLabel")
  2592.  
  2593. LabelNameSliderxd.Parent = TextFrame
  2594. LabelNameSliderxd.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2595. LabelNameSliderxd.BackgroundTransparency = 1
  2596. LabelNameSliderxd.BorderSizePixel = 0
  2597. LabelNameSliderxd.Position = UDim2.new(0.5, 0, 0.2, 0)
  2598. LabelNameSliderxd.AnchorPoint = Vector2.new(0.5, 0.5)
  2599. LabelNameSliderxd.Size = UDim2.new(0, 160, 0, 20)
  2600. LabelNameSliderxd.Font = Enum.Font.GothamBold
  2601. LabelNameSliderxd.Text = tostring(text)
  2602. LabelNameSliderxd.TextColor3 = Color3.fromRGB(155, 155, 155)
  2603. LabelNameSliderxd.TextSize = 11.000
  2604. LabelNameSliderxd.TextXAlignment = Enum.TextXAlignment.Center
  2605.  
  2606. local ConerTextBox = Instance.new("UICorner")
  2607.  
  2608. ConerTextBox.CornerRadius = UDim.new(0, 4)
  2609. ConerTextBox.Name = ""
  2610. ConerTextBox.Parent = TextFrame
  2611.  
  2612. local FrameBox = Instance.new("Frame")
  2613.  
  2614. FrameBox.Name = "TextFrame"
  2615. FrameBox.Parent = TextFrame
  2616. FrameBox.BackgroundColor3 = Color3.fromRGB(23, 23, 23)
  2617. FrameBox.BorderSizePixel = 0
  2618. FrameBox.Position = UDim2.new(0.5, 0, 0.65, 0)
  2619. FrameBox.AnchorPoint = Vector2.new(0.5, 0.5)
  2620. FrameBox.Size = UDim2.new(0, 158, 0, 30)
  2621. FrameBox.BackgroundTransparency = 0.2
  2622. FrameBox.ClipsDescendants = true
  2623. FrameBox.AnchorPoint = Vector2.new(0.5, 0.5)
  2624.  
  2625. local TextFrame2 = Instance.new("TextBox")
  2626.  
  2627. TextFrame2.Parent = FrameBox
  2628. TextFrame2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2629. TextFrame2.BorderSizePixel = 0
  2630. TextFrame2.ClipsDescendants = true
  2631. TextFrame2.Position = UDim2.new(0.5, 0, 0.5, 0)
  2632. TextFrame2.AnchorPoint = Vector2.new(0.5, 0.5)
  2633. TextFrame2.Size = UDim2.new(0, 158, 0, 35)
  2634. TextFrame2.Font = Enum.Font.GothamSemibold
  2635. TextFrame2.PlaceholderColor3 = Color3.fromRGB(155, 155, 155)
  2636. TextFrame2.PlaceholderText = text2
  2637. TextFrame2.Text = ""
  2638. TextFrame2.TextColor3 = Color3.fromRGB(155, 155, 155)
  2639. TextFrame2.TextSize = 12.000
  2640. TextFrame2.BackgroundTransparency = 1
  2641.  
  2642. local ConerTextBox2 = Instance.new("UICorner")
  2643.  
  2644. ConerTextBox2.CornerRadius = UDim.new(0, 4)
  2645. ConerTextBox2.Name = ""
  2646. ConerTextBox2.Parent = FrameBox
  2647.  
  2648. local TextBoxStroke = Instance.new("UIStroke")
  2649.  
  2650. TextBoxStroke.Thickness = 1
  2651. TextBoxStroke.Name = ""
  2652. TextBoxStroke.Parent = FrameBox
  2653. TextBoxStroke.LineJoinMode = Enum.LineJoinMode.Round
  2654. TextBoxStroke.Color = Color3.fromRGB(255, 255, 255)
  2655. TextBoxStroke.Transparency = 0.7
  2656.  
  2657.  
  2658. TextFrame.MouseEnter:Connect(function()
  2659. TweenService:Create(
  2660. FrameBox,
  2661. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2662. {Size = UDim2.new(0, 213, 0, 30)} -- UDim2.new(0, 128, 0, 25)
  2663. ):Play()
  2664. TweenService:Create(
  2665. FrameBox,
  2666. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2667. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2668. ):Play()
  2669. TweenService:Create(
  2670. TextFrame2,
  2671. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2672. {PlaceholderColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2673. ):Play()
  2674. TweenService:Create(
  2675. TextFrame2,
  2676. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2677. {TextColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2678. ):Play()
  2679. TweenService:Create(
  2680. LabelNameSliderxd,
  2681. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2682. {TextColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2683. ):Play()
  2684. TweenService:Create(
  2685. TextBoxStroke,
  2686. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2687. {Thickness = 0} -- UDim2.new(0, 128, 0, 25)
  2688. ):Play()
  2689. end
  2690. )
  2691.  
  2692. TextFrame.MouseLeave:Connect(function()
  2693. TweenService:Create(
  2694. FrameBox,
  2695. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2696. {Size = UDim2.new(0, 158, 0, 30)} -- UDim2.new(0, 128, 0, 25)
  2697. ):Play()
  2698. TweenService:Create(
  2699. FrameBox,
  2700. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2701. {BackgroundColor3 = Color3.fromRGB(23, 23, 23)} -- UDim2.new(0, 128, 0, 25)
  2702. ):Play()
  2703. TweenService:Create(
  2704. TextFrame2,
  2705. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2706. {PlaceholderColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2707. ):Play()
  2708. TweenService:Create(
  2709. TextBoxStroke,
  2710. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2711. {Thickness = 1} -- UDim2.new(0, 128, 0, 25)
  2712. ):Play()
  2713. TweenService:Create(
  2714. LabelNameSliderxd,
  2715. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2716. {TextColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2717. ):Play()
  2718. TweenService:Create(
  2719. TextFrame2,
  2720. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2721. {TextColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2722. ):Play()
  2723. end
  2724. )
  2725. TextFrame2.FocusLost:Connect(function ()
  2726. if #TextFrame2.Text > 0 then
  2727. pcall(callback,TextFrame2.Text)
  2728. end
  2729. end)
  2730. end
  2731.  
  2732. function items:Bind(text,bi,callback)
  2733. local BindFrame = Instance.new("Frame")
  2734.  
  2735. BindFrame.Name = "BindFrame"
  2736. BindFrame.Parent = ScrollingFrame_Pageframe
  2737. BindFrame.BackgroundColor3 = Color3.fromRGB(23, 23, 23)
  2738. BindFrame.BorderSizePixel = 0
  2739. BindFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  2740. BindFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  2741. BindFrame.Size = UDim2.new(0, 213, 0, 35)
  2742. BindFrame.BackgroundTransparency = 0
  2743. BindFrame.ClipsDescendants = true
  2744.  
  2745. local BindConner = Instance.new("UICorner")
  2746.  
  2747. BindConner.CornerRadius = UDim.new(0, 4)
  2748. BindConner.Name = ""
  2749. BindConner.Parent = BindFrame
  2750.  
  2751. local BindStroke = Instance.new("UIStroke")
  2752.  
  2753. BindStroke.Thickness = 1
  2754. BindStroke.Name = ""
  2755. BindStroke.Parent = BindFrame
  2756. BindStroke.LineJoinMode = Enum.LineJoinMode.Round
  2757. BindStroke.Color = Color3.fromRGB(255, 255, 255)
  2758. BindStroke.Transparency = 0.7
  2759.  
  2760. local LabelBind = Instance.new("TextLabel")
  2761.  
  2762. LabelBind.Parent = BindFrame
  2763. LabelBind.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2764. LabelBind.BackgroundTransparency = 1
  2765. LabelBind.BorderSizePixel = 0
  2766. LabelBind.Position = UDim2.new(0.4, 0, 0.5, 0)
  2767. LabelBind.AnchorPoint = Vector2.new(0.5, 0.5)
  2768. LabelBind.Size = UDim2.new(0, 140, 0, 35)
  2769. LabelBind.Font = Enum.Font.GothamBold
  2770. LabelBind.Text = tostring(text)
  2771. LabelBind.TextColor3 = Color3.fromRGB(155, 155, 155)
  2772. LabelBind.TextSize = 11.000
  2773. LabelBind.TextXAlignment = Enum.TextXAlignment.Left
  2774.  
  2775. local key = bi.Name
  2776. local LabelBind2 = Instance.new("TextButton")
  2777.  
  2778. LabelBind2.Parent = BindFrame
  2779. LabelBind2.Name = "LabelBind2"
  2780. LabelBind2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2781. LabelBind2.Size = UDim2.new(0, 100, 0, 19)
  2782. LabelBind2.Font = Enum.Font.GothamBold
  2783. LabelBind2.Text = "KEY : "..key
  2784. LabelBind2.TextColor3 = Color3.fromRGB(155, 155, 155)
  2785. LabelBind2.TextSize = 11.000
  2786. LabelBind2.AnchorPoint = Vector2.new(0.5, 0.5)
  2787. LabelBind2.Position = UDim2.new(0.75, 0, 0.5, 0)
  2788. LabelBind2.TextXAlignment = Enum.TextXAlignment.Center
  2789. LabelBind2.BackgroundTransparency = 1
  2790. LabelBind2.TextWrapped = true
  2791.  
  2792. local LabelBind22 = Instance.new("TextButton")
  2793.  
  2794. LabelBind22.Parent = BindFrame
  2795. LabelBind22.Name = "LabelBind22"
  2796. LabelBind22.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2797. LabelBind22.Size = UDim2.new(0, 213, 0, 35)
  2798. LabelBind22.Font = Enum.Font.GothamBold
  2799. LabelBind22.Text = ""
  2800. LabelBind22.TextColor3 = Color3.fromRGB(155, 155, 155)
  2801. LabelBind22.TextSize = 11.000
  2802. LabelBind22.AnchorPoint = Vector2.new(0.5, 0.5)
  2803. LabelBind22.Position = UDim2.new(0.5, 0, 0.5, 0)
  2804. LabelBind22.TextXAlignment = Enum.TextXAlignment.Center
  2805. LabelBind22.BackgroundTransparency = 1
  2806. LabelBind22.TextWrapped = true
  2807.  
  2808. BindFrame.MouseEnter:Connect(function()
  2809. TweenService:Create(
  2810. BindStroke,
  2811. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2812. {Transparency = 0} -- UDim2.new(0, 128, 0, 25)
  2813. ):Play()
  2814. TweenService:Create(
  2815. LabelBind22,
  2816. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2817. {TextColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2818. ):Play()
  2819. TweenService:Create(
  2820. LabelBind2,
  2821. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2822. {TextColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2823. ):Play()
  2824. TweenService:Create(
  2825. LabelBind,
  2826. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2827. {TextColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  2828. ):Play()
  2829. end
  2830. )
  2831. BindFrame.MouseLeave:Connect(function()
  2832. TweenService:Create(
  2833. BindStroke,
  2834. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2835. {Transparency = 0.7} -- UDim2.new(0, 128, 0, 25)
  2836. ):Play()
  2837. TweenService:Create(
  2838. LabelBind22,
  2839. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2840. {TextColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2841. ):Play()
  2842. TweenService:Create(
  2843. LabelBind2,
  2844. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2845. {TextColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2846. ):Play()
  2847. TweenService:Create(
  2848. LabelBind,
  2849. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  2850. {TextColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  2851. ):Play()
  2852. end
  2853. )
  2854.  
  2855. LabelBind22.MouseButton1Click:Connect(function ()
  2856.  
  2857.  
  2858. LabelBind2.Text = "KEY : ".."..."
  2859. local inputwait = game:GetService("UserInputService").InputBegan:wait()
  2860. local fuckulop = inputwait.KeyCode == Enum.KeyCode.Unknown and inputwait.UserInputType or inputwait.KeyCode
  2861.  
  2862. if
  2863. fuckulop.Name ~= "Focus" and fuckulop.Name ~= "MouseMovement" and fuckulop.Name ~= "Focus"
  2864. then
  2865. LabelBind2.Text = "KEY : "..fuckulop.Name
  2866. key = fuckulop.Name
  2867. end
  2868. -- if fuckulop.Name ~= "Unknown" then
  2869. -- LabelBind2.Text = fuckulop.Name
  2870. -- key = fuckulop.Name
  2871. -- end
  2872.  
  2873. end)
  2874.  
  2875.  
  2876. game:GetService("UserInputService").InputBegan:connect(
  2877. function(current)
  2878. local fuckulop2 = current.KeyCode == Enum.KeyCode.Unknown and current.UserInputType or current.KeyCode
  2879.  
  2880. if fuckulop2.Name == key then
  2881. pcall(callback)
  2882.  
  2883. end
  2884. end
  2885. )
  2886.  
  2887. end
  2888.  
  2889. function items:Line()
  2890. local LineFrame = Instance.new("Frame")
  2891.  
  2892. LineFrame.Name = "LineFrame"
  2893. LineFrame.Parent = ScrollingFrame_Pageframe
  2894. LineFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2895. LineFrame.BorderSizePixel = 0
  2896. LineFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  2897. LineFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  2898. LineFrame.Size = UDim2.new(0, 213, 0, 1)
  2899. LineFrame.BackgroundTransparency = 0
  2900. LineFrame.ClipsDescendants = true
  2901.  
  2902. local LineFrame_BindConner = Instance.new("UICorner")
  2903.  
  2904. LineFrame_BindConner.CornerRadius = UDim.new(0, 30)
  2905. LineFrame_BindConner.Name = ""
  2906. LineFrame_BindConner.Parent = LineFrame
  2907.  
  2908. end
  2909.  
  2910. function items:Color(text,preset,callback)
  2911. local Pixker = Instance.new("Frame")
  2912.  
  2913. Pixker.Name = "Pixker"
  2914. Pixker.Parent = ScrollingFrame_Pageframe
  2915. Pixker.BackgroundColor3 = Color3.fromRGB(23, 23, 23)
  2916. Pixker.Position = UDim2.new(0.0833333358, 0, 0.235135213, 0)
  2917. Pixker.Size = UDim2.new(0, 213, 0, 33)
  2918. Pixker.BackgroundTransparency = 0
  2919. Pixker.BorderSizePixel = 0
  2920. Pixker.AnchorPoint = Vector2.new(0.5, 0.5)
  2921. Pixker.Position = UDim2.new(0.5, 0, 0.5, 0)
  2922. Pixker.ClipsDescendants = true
  2923.  
  2924.  
  2925. local BoxColorCorner2 = Instance.new("UICorner")
  2926.  
  2927. BoxColorCorner2.CornerRadius = UDim.new(0, 4)
  2928. BoxColorCorner2.Name = "BoxColorCorner"
  2929. BoxColorCorner2.Parent = Pixker
  2930.  
  2931. local MheeFrameStroke = Instance.new("UIStroke")
  2932.  
  2933. MheeFrameStroke.Thickness = 1
  2934. MheeFrameStroke.Name = ""
  2935. MheeFrameStroke.Parent = Pixker
  2936. MheeFrameStroke.LineJoinMode = Enum.LineJoinMode.Round
  2937. MheeFrameStroke.Color = Color3.fromRGB(255, 255, 255)
  2938. MheeFrameStroke.Transparency = 0.7
  2939.  
  2940.  
  2941. local TextFrameColor = Instance.new("TextLabel")
  2942.  
  2943. TextFrameColor.Parent = Pixker
  2944. TextFrameColor.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2945. TextFrameColor.BorderSizePixel = 0
  2946. TextFrameColor.Size = UDim2.new(0, 200, 0, 34)
  2947. TextFrameColor.Font = Enum.Font.SourceSans
  2948. TextFrameColor.Text = " "
  2949. TextFrameColor.TextColor3 = Color3.fromRGB(0, 0, 0)
  2950. TextFrameColor.TextSize = 14.000
  2951. TextFrameColor.BackgroundTransparency = 1
  2952. TextFrameColor.Position = UDim2.new(0., 0, 0., 0)
  2953.  
  2954. local TextReal = Instance.new("TextLabel")
  2955.  
  2956. TextReal.Parent = TextFrameColor
  2957. TextReal.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2958. TextReal.BorderSizePixel = 0
  2959. TextReal.Size = UDim2.new(0, 140, 0, 34)
  2960. TextReal.Font = Enum.Font.GothamSemibold
  2961. TextReal.Text = text
  2962. TextReal.TextColor3 = Color3.fromRGB(155,155, 155)
  2963. TextReal.TextSize = 12.000
  2964. TextReal.BackgroundTransparency = 1
  2965. TextReal.Position = UDim2.new(0.05, 0, 0., 0)
  2966. TextReal.TextXAlignment = Enum.TextXAlignment.Left
  2967.  
  2968. local BoxColor = Instance.new("Frame")
  2969.  
  2970. BoxColor.Name = "BoxColor"
  2971. BoxColor.Parent = TextFrameColor
  2972. BoxColor.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2973. BoxColor.Position = UDim2.new(0.85, 0, 0.5, 0)
  2974. BoxColor.Size = UDim2.new(0, 35, 0, 19)
  2975. BoxColor.AnchorPoint = Vector2.new(0.5, 0.5)
  2976.  
  2977. local BoxColorCorner = Instance.new("UICorner")
  2978.  
  2979. BoxColorCorner.CornerRadius = UDim.new(0, 4)
  2980. BoxColorCorner.Name = "BoxColorCorner"
  2981. BoxColorCorner.Parent = BoxColor
  2982.  
  2983. local TextButton_Dropdown = Instance.new("TextButton")
  2984.  
  2985.  
  2986. TextButton_Dropdown.Parent = TextFrameColor
  2987. TextButton_Dropdown.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  2988. TextButton_Dropdown.BorderSizePixel = 0
  2989. TextButton_Dropdown.Position = UDim2.new(0., 0, 0.14705883, 0)
  2990. TextButton_Dropdown.Size = UDim2.new(0, 200, 0, 33)
  2991. TextButton_Dropdown.Font = Enum.Font.SourceSans
  2992. TextButton_Dropdown.Text = " "
  2993. TextButton_Dropdown.TextColor3 = Color3.fromRGB(0, 0, 0)
  2994. TextButton_Dropdown.TextSize = 14.000
  2995. TextButton_Dropdown.AutoButtonColor = false
  2996. --TextButton_Dropdown.AnchorPoint = Vector2.new(0.5, 0.5)
  2997. TextButton_Dropdown.Position = UDim2.new(0, 0, 0, 0)
  2998. TextButton_Dropdown.BackgroundTransparency = 1
  2999.  
  3000.  
  3001.  
  3002. Pixker.MouseEnter:Connect(function()
  3003. TweenService:Create(
  3004. MheeFrameStroke,
  3005. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3006. {Transparency = 0.}
  3007. ):Play()
  3008. TweenService:Create(
  3009. TextReal,
  3010. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3011. {TextColor3 = Color3.fromRGB(255,255, 255)}
  3012. ):Play()
  3013.  
  3014. end)
  3015. Pixker.MouseLeave:Connect(function()
  3016. TweenService:Create(
  3017. MheeFrameStroke,
  3018. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3019. {Transparency = 0.7}
  3020. ):Play()
  3021. TweenService:Create(
  3022. TextReal,
  3023. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3024. {TextColor3 = Color3.fromRGB(155,155, 155)}
  3025. ):Play()
  3026. end)
  3027. -- Rainbow Toggle
  3028.  
  3029.  
  3030. local TextButton_2_Toggle = Instance.new("TextButton")
  3031.  
  3032. TextButton_2_Toggle.Parent = TextFrameColor
  3033. TextButton_2_Toggle.BackgroundColor3 = Color3.fromRGB(155, 155, 155)
  3034. -- TextButton_2_Toggle.BorderColor3 = Color3.fromRGB(255, 255, 255)
  3035. TextButton_2_Toggle.BorderSizePixel = 0
  3036. TextButton_2_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  3037. TextButton_2_Toggle.Position = UDim2.new(0.2, 0, 1.87, 0)
  3038. TextButton_2_Toggle.Size = UDim2.new(0, 30, 0, 13)
  3039. TextButton_2_Toggle.Font = Enum.Font.SourceSans
  3040. TextButton_2_Toggle.Text = " "
  3041. TextButton_2_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  3042. TextButton_2_Toggle.TextSize = 12.000
  3043. TextButton_2_Toggle.AutoButtonColor = false
  3044.  
  3045. local TextButton_Pageframe_Uiconner = Instance.new("UICorner")
  3046.  
  3047. TextButton_Pageframe_Uiconner.CornerRadius = UDim.new(0, 30)
  3048. TextButton_Pageframe_Uiconner.Name = ""
  3049. TextButton_Pageframe_Uiconner.Parent = TextButton_2_Toggle
  3050.  
  3051. local TextButton_3_Toggle = Instance.new("TextButton")
  3052.  
  3053. TextButton_3_Toggle.Parent = TextButton_2_Toggle
  3054. TextButton_3_Toggle.BackgroundColor3 = Color3.fromRGB(255, 255,255)
  3055. -- TextButton_3_Toggle.BorderColor3 = Color3.fromRGB(255, 255, 255)
  3056. TextButton_3_Toggle.BorderSizePixel = 0
  3057. TextButton_3_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  3058. TextButton_3_Toggle.Position = UDim2.new(0.1, 0, 0.5, 0)
  3059. TextButton_3_Toggle.Size = UDim2.new(0, 19, 0, 19)
  3060. TextButton_3_Toggle.Font = Enum.Font.SourceSans
  3061. TextButton_3_Toggle.Text = " "
  3062. TextButton_3_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  3063. TextButton_3_Toggle.TextSize = 12.000
  3064. TextButton_3_Toggle.AutoButtonColor = false
  3065.  
  3066. local TextButton_Pageframe_Uiconner2 = Instance.new("UICorner")
  3067.  
  3068. TextButton_Pageframe_Uiconner2.CornerRadius = UDim.new(0, 30)
  3069. TextButton_Pageframe_Uiconner2.Name = ""
  3070. TextButton_Pageframe_Uiconner2.Parent = TextButton_3_Toggle
  3071.  
  3072. local TextButton_4_Toggle = Instance.new("TextButton")
  3073.  
  3074. TextButton_4_Toggle.Parent = TextButton_3_Toggle
  3075. TextButton_4_Toggle.BackgroundColor3 = Color3.fromRGB(155, 155,155)
  3076. -- TextButton_3_Toggle.BorderColor3 = Color3.fromRGB(255, 255, 255)
  3077. TextButton_4_Toggle.BorderSizePixel = 0
  3078. TextButton_4_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  3079. TextButton_4_Toggle.Position = UDim2.new(0.5, 0, 0.5, 0)
  3080. TextButton_4_Toggle.Size = UDim2.new(0, 27, 0, 27-2)
  3081. TextButton_4_Toggle.Font = Enum.Font.SourceSans
  3082. TextButton_4_Toggle.Text = " "
  3083. TextButton_4_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  3084. TextButton_4_Toggle.TextSize = 12.000
  3085. TextButton_4_Toggle.AutoButtonColor = false
  3086. TextButton_4_Toggle.BackgroundTransparency = 1
  3087. TextButton_4_Toggle.Visible = true
  3088.  
  3089. local TextButton_Pageframe_Uiconner4 = Instance.new("UICorner")
  3090.  
  3091. TextButton_Pageframe_Uiconner4.CornerRadius = UDim.new(0, 30)
  3092. TextButton_Pageframe_Uiconner4.Name = ""
  3093. TextButton_Pageframe_Uiconner4.Parent = TextButton_4_Toggle
  3094.  
  3095.  
  3096. local TextButton_Toggle = Instance.new("TextButton")
  3097.  
  3098. TextButton_Toggle.Parent = ValueFrame
  3099. TextButton_Toggle.BackgroundTransparency =1
  3100. TextButton_Toggle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3101. TextButton_Toggle.BorderSizePixel = 0
  3102. TextButton_Toggle.Size = UDim2.new(0, 50, 0, 20)
  3103. TextButton_Toggle.AutoButtonColor = false
  3104. TextButton_Toggle.Font = Enum.Font.SourceSans
  3105. TextButton_Toggle.Text = " "
  3106. TextButton_Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  3107. TextButton_Toggle.TextSize = 12.000
  3108. TextButton_Toggle.AnchorPoint = Vector2.new(0.5, 0.5)
  3109. TextButton_Toggle.Position = UDim2.new(1.25, 0, 0.4, 0)
  3110.  
  3111. local TextButton_3_Toggle2 = Instance.new("TextLabel")
  3112.  
  3113. TextButton_3_Toggle2.Parent = TextButton_2_Toggle
  3114. TextButton_3_Toggle2.BackgroundColor3 = Color3.fromRGB(32, 32,32)
  3115. TextButton_3_Toggle2.BorderColor3 = Color3.fromRGB(255, 255, 255)
  3116. TextButton_3_Toggle2.BorderSizePixel = 0
  3117. TextButton_3_Toggle2.AnchorPoint = Vector2.new(0.5, 0.5)
  3118. TextButton_3_Toggle2.Position = UDim2.new(1.9, 0, 0.5, 0)
  3119. TextButton_3_Toggle2.Size = UDim2.new(0, 500, 0, 21)
  3120. TextButton_3_Toggle2.Font = Enum.Font.SourceSansBold
  3121. TextButton_3_Toggle2.Text = "Rainbow"
  3122. TextButton_3_Toggle2.TextColor3 = Color3.fromRGB(255, 255, 255)
  3123. TextButton_3_Toggle2.TextSize = 13.000
  3124. TextButton_3_Toggle2.BackgroundTransparency = 1
  3125.  
  3126. local OMF = Instance.new("TextButton")
  3127.  
  3128. OMF.Parent = TextButton_2_Toggle
  3129. OMF.BackgroundTransparency =1
  3130. OMF.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3131. OMF.BorderSizePixel = 0
  3132. OMF.Size = UDim2.new(0, 100, 0, 20)
  3133. OMF.AutoButtonColor = false
  3134. OMF.Font = Enum.Font.SourceSans
  3135. OMF.Text = " "
  3136. OMF.TextColor3 = Color3.fromRGB(0, 0, 0)
  3137. OMF.TextSize = 12.000
  3138. OMF.AnchorPoint = Vector2.new(0.5, 0.5)
  3139. OMF.Position = UDim2.new(1.3, 0, 0.5, 0)
  3140.  
  3141. local Color = Instance.new("ImageLabel")
  3142.  
  3143. Color.Name = "Color"
  3144. Color.Parent = TextFrameColor
  3145. Color.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  3146. Color.Position = UDim2.new(0.05,0,4,0)
  3147. Color.Size = UDim2.new(0, 195, 0, 40)
  3148. Color.ZIndex = 0
  3149. Color.BorderSizePixel = 0
  3150. Color.Image = "rbxassetid://4155801252"
  3151.  
  3152. local ColorFucj = Instance.new("UICorner")
  3153.  
  3154. ColorFucj.CornerRadius = UDim.new(0, 4)
  3155. ColorFucj.Name = ""
  3156. ColorFucj.Parent = Color
  3157.  
  3158. local ColorSelection = Instance.new("ImageLabel")
  3159.  
  3160. ColorSelection.Name = "ColorSelection"
  3161. ColorSelection.Parent = Color
  3162. ColorSelection.AnchorPoint = Vector2.new(0.5, 0.5)
  3163. ColorSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3164. ColorSelection.BackgroundTransparency = 1.000
  3165. ColorSelection.Position = UDim2.new(preset and select(3, Color3.toHSV(preset)))
  3166. ColorSelection.Size = UDim2.new(0, 18, 0, 18)
  3167. ColorSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
  3168. ColorSelection.ScaleType = Enum.ScaleType.Fit
  3169. ColorSelection.Visible = true
  3170.  
  3171. local Hue = Instance.new("ImageLabel")
  3172.  
  3173. Hue.Name = "Hue2"
  3174. Hue.Parent = TextFrameColor
  3175. Hue.Position = UDim2.new(0.14,0,3,0)
  3176. Hue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3177. Hue.Size = UDim2.new(0, 160, 0, 25)
  3178. Hue.ZIndex = 0
  3179. Hue.BorderSizePixel = 0
  3180.  
  3181. local ColorFucj2 = Instance.new("UICorner")
  3182.  
  3183. ColorFucj2.CornerRadius = UDim.new(0, 4)
  3184. ColorFucj2.Name = ""
  3185. ColorFucj2.Parent = Hue
  3186.  
  3187. local HueGradient = Instance.new("UIGradient")
  3188.  
  3189. HueGradient.Color = ColorSequence.new {
  3190. ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 0, 4)),
  3191. ColorSequenceKeypoint.new(0.20, Color3.fromRGB(234, 255, 0)),
  3192. ColorSequenceKeypoint.new(0.40, Color3.fromRGB(21, 255, 0)),
  3193. ColorSequenceKeypoint.new(0.60, Color3.fromRGB(0, 255, 255)),
  3194. ColorSequenceKeypoint.new(0.80, Color3.fromRGB(0, 17, 255)),
  3195. ColorSequenceKeypoint.new(0.90, Color3.fromRGB(255, 0, 251)),
  3196. ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 0, 4))
  3197. }
  3198. HueGradient.Rotation = 0
  3199. HueGradient.Name = "HueGradient"
  3200. HueGradient.Parent = Hue
  3201.  
  3202. local HueSelection = Instance.new("ImageLabel")
  3203.  
  3204. HueSelection.Name = "HueSelection"
  3205. HueSelection.Parent = Hue
  3206. HueSelection.AnchorPoint = Vector2.new(0.5, 0.5)
  3207. HueSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3208. HueSelection.BackgroundTransparency = 1.000
  3209. HueSelection.Position = UDim2.new(preset and select(3, Color3.toHSV(preset)))
  3210. HueSelection.Size = UDim2.new(0, 18, 0, 18)
  3211. HueSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
  3212. HueSelection.ScaleType = Enum.ScaleType.Fit
  3213. HueSelection.Visible = true
  3214.  
  3215.  
  3216. local BTN_XD = Instance.new("TextButton")
  3217.  
  3218. BTN_XD.Parent = TextFrameColor
  3219. BTN_XD.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  3220. BTN_XD.BorderColor3 = Color3.fromRGB(255, 255, 255)
  3221. BTN_XD.BorderSizePixel = 0
  3222. BTN_XD.AnchorPoint = Vector2.new(0.5, 0.5)
  3223. BTN_XD.Position = UDim2.new(0.8, 0, 1.9, 0)
  3224. BTN_XD.Size = UDim2.new(0, 50, 0, 25)
  3225. BTN_XD.Font = Enum.Font.GothamSemibold
  3226. BTN_XD.Text = "Confirm"
  3227. BTN_XD.TextColor3 = Color3.fromRGB(255, 255, 255)
  3228. BTN_XD.TextSize = 11.000
  3229. BTN_XD.AutoButtonColor = false
  3230.  
  3231. local BTN_XD_COnner = Instance.new("UICorner")
  3232.  
  3233. BTN_XD_COnner.CornerRadius = UDim.new(0, 4)
  3234. BTN_XD_COnner.Name = ""
  3235. BTN_XD_COnner.Parent = BTN_XD
  3236.  
  3237.  
  3238.  
  3239. local MheeFrameStroke = Instance.new("UIStroke")
  3240.  
  3241. MheeFrameStroke.Thickness = 1
  3242. MheeFrameStroke.Name = ""
  3243. MheeFrameStroke.Parent = BTN_XD
  3244. MheeFrameStroke.LineJoinMode = Enum.LineJoinMode.Round
  3245. MheeFrameStroke.Color = Color3.fromRGB(255, 255, 255)
  3246. MheeFrameStroke.Transparency = 0.7
  3247.  
  3248.  
  3249. local UwU = false
  3250.  
  3251.  
  3252. OMF.MouseButton1Click:Connect(function()
  3253. if UwU == false then
  3254. TweenService:Create(
  3255. TextButton_4_Toggle,
  3256. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3257. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  3258. ):Play()
  3259. TweenService:Create(
  3260. TextButton_3_Toggle,
  3261. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3262. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  3263. ):Play()
  3264. TweenService:Create(
  3265. TextButton_2_Toggle,
  3266. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3267. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  3268. ):Play()
  3269. TextButton_3_Toggle:TweenSizeAndPosition(UDim2.new(0, 19, 0, 19), UDim2.new(1, 0, 0.5, 0), "Out", "Quad", 0.3, true)
  3270. else
  3271. TweenService:Create(
  3272. TextButton_4_Toggle,
  3273. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3274. {BackgroundColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  3275. ):Play()
  3276. TweenService:Create(
  3277. TextButton_3_Toggle,
  3278. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3279. {BackgroundColor3 = Color3.fromRGB(255, 255, 255)} -- UDim2.new(0, 128, 0, 25)
  3280. ):Play()
  3281. TweenService:Create(
  3282. TextButton_2_Toggle,
  3283. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3284. {BackgroundColor3 = Color3.fromRGB(155, 155, 155)} -- UDim2.new(0, 128, 0, 25)
  3285. ):Play()
  3286. TextButton_3_Toggle:TweenSizeAndPosition(UDim2.new(0, 19, 0, 19), UDim2.new(0.1, 0, 0.5, 0), "Out", "Quad", 0.3, true)
  3287. end
  3288. UwU = not UwU
  3289. end
  3290. )
  3291.  
  3292.  
  3293. OMF.MouseEnter:Connect(function()
  3294. TweenService:Create(
  3295. TextButton_4_Toggle,
  3296. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3297. {BackgroundTransparency = 0.6} -- UDim2.new(0, 128, 0, 25)
  3298. ):Play()
  3299. end
  3300. )
  3301.  
  3302. OMF.MouseLeave:Connect(function()
  3303. TweenService:Create(
  3304. TextButton_4_Toggle,
  3305. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3306. {BackgroundTransparency = 1} -- UDim2.new(0, 128, 0, 25)
  3307. ):Play()
  3308. end
  3309. )
  3310.  
  3311. OMF.MouseButton1Down:Connect(
  3312. function()
  3313. RainbowColorPicker = not RainbowColorPicker
  3314.  
  3315. if ColorInput then
  3316. ColorInput:Disconnect()
  3317. end
  3318.  
  3319. if HueInput then
  3320. HueInput:Disconnect()
  3321. end
  3322.  
  3323. if RainbowColorPicker then
  3324.  
  3325.  
  3326. OldToggleColor = BoxColor.BackgroundColor3
  3327. OldColor = Color.BackgroundColor3
  3328. OldColorSelectionPosition = ColorSelection.Position
  3329. OldHueSelectionPosition = HueSelection.Position
  3330.  
  3331. while RainbowColorPicker do
  3332. BoxColor.BackgroundColor3 = Color3.fromHSV(Red.RainbowColorValue, 1, 1)
  3333. Color.BackgroundColor3 = Color3.fromHSV(Red.RainbowColorValue, 1, 1)
  3334.  
  3335. ColorSelection.Position = UDim2.new(1, 0, 0, 0)
  3336. HueSelection.Position = UDim2.new(0, Red.HueSelectionPosition, 0.5,0)
  3337.  
  3338. pcall(callback, BoxColor.BackgroundColor3)
  3339. wait()
  3340. end
  3341. elseif not RainbowColorPicker then
  3342.  
  3343. BoxColor.BackgroundColor3 = OldToggleColor
  3344. Color.BackgroundColor3 = OldColor
  3345.  
  3346. ColorSelection.Position = OldColorSelectionPosition
  3347. HueSelection.Position = OldHueSelectionPosition
  3348.  
  3349. pcall(callback, BoxColor.BackgroundColor3)
  3350. end
  3351. end
  3352. )
  3353. TextButton_3_Toggle.MouseButton1Down:Connect(
  3354. function()
  3355. RainbowColorPicker = not RainbowColorPicker
  3356.  
  3357. if ColorInput then
  3358. ColorInput:Disconnect()
  3359. end
  3360.  
  3361. if HueInput then
  3362. HueInput:Disconnect()
  3363. end
  3364.  
  3365. if RainbowColorPicker then
  3366.  
  3367.  
  3368. OldToggleColor = BoxColor.BackgroundColor3
  3369. OldColor = Color.BackgroundColor3
  3370. OldColorSelectionPosition = ColorSelection.Position
  3371. OldHueSelectionPosition = HueSelection.Position
  3372.  
  3373. while RainbowColorPicker do
  3374. BoxColor.BackgroundColor3 = Color3.fromHSV(Red.RainbowColorValue, 1, 1)
  3375. Color.BackgroundColor3 = Color3.fromHSV(Red.RainbowColorValue, 1, 1)
  3376.  
  3377. ColorSelection.Position = UDim2.new(1, 0, 0, 0)
  3378. HueSelection.Position = UDim2.new(0, Red.HueSelectionPosition, 0.5,0)
  3379.  
  3380. pcall(callback, BoxColor.BackgroundColor3)
  3381. wait()
  3382. end
  3383. elseif not RainbowColorPicker then
  3384.  
  3385. BoxColor.BackgroundColor3 = OldToggleColor
  3386. Color.BackgroundColor3 = OldColor
  3387.  
  3388. ColorSelection.Position = OldColorSelectionPosition
  3389. HueSelection.Position = OldHueSelectionPosition
  3390.  
  3391. pcall(callback, BoxColor.BackgroundColor3)
  3392. end
  3393. end
  3394. )
  3395.  
  3396.  
  3397. local function UpdateColorPicker(nope)
  3398. BoxColor.BackgroundColor3 = Color3.fromHSV(ColorH, ColorS, ColorV)
  3399. Color.BackgroundColor3 = Color3.fromHSV(ColorH, 1, 1)
  3400.  
  3401. pcall(callback, BoxColor.BackgroundColor3)
  3402. end
  3403. ColorH =
  3404. 1 -
  3405. (math.clamp(HueSelection.AbsolutePosition.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) /
  3406. Hue.AbsoluteSize.Y)
  3407. ColorS =
  3408. (math.clamp(ColorSelection.AbsolutePosition.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) /
  3409. Color.AbsoluteSize.X)
  3410. ColorV =
  3411. 1 -
  3412. (math.clamp(ColorSelection.AbsolutePosition.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) /
  3413. Color.AbsoluteSize.Y)
  3414.  
  3415. BoxColor.BackgroundColor3 = preset
  3416. Color.BackgroundColor3 = preset
  3417. pcall(callback, BoxColor.BackgroundColor3)
  3418.  
  3419. local RainbowColorPicker = false
  3420.  
  3421. Color.InputBegan:Connect(
  3422. function(input)
  3423. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  3424. if RainbowColorPicker then
  3425. return
  3426. end
  3427.  
  3428. if ColorInput then
  3429. ColorInput:Disconnect()
  3430. end
  3431.  
  3432. ColorInput =
  3433. RunService.RenderStepped:Connect(
  3434. function()
  3435. local ColorX =
  3436. (math.clamp(Mouse.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) /
  3437. Color.AbsoluteSize.X)
  3438. local ColorY =
  3439. (math.clamp(Mouse.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) /
  3440. Color.AbsoluteSize.Y)
  3441.  
  3442. ColorSelection.Position = UDim2.new(ColorX, 0, ColorY, 0)
  3443. ColorS = ColorX
  3444. ColorV = 1 - ColorY
  3445.  
  3446. UpdateColorPicker(true)
  3447. end
  3448. )
  3449. end
  3450. end
  3451. )
  3452.  
  3453.  
  3454. Color.InputEnded:Connect(
  3455. function(input)
  3456. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  3457. if ColorInput then
  3458. ColorInput:Disconnect()
  3459. end
  3460. end
  3461. end
  3462. )
  3463.  
  3464. Hue.InputBegan:Connect(
  3465. function(input)
  3466. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  3467. if RainbowColorPicker then
  3468. return
  3469. end
  3470.  
  3471. if HueInput then
  3472. HueInput:Disconnect()
  3473. end
  3474.  
  3475. HueInput =
  3476. RunService.RenderStepped:Connect(
  3477. function()
  3478. local HueY =
  3479. (math.clamp(Mouse.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) /
  3480. Hue.AbsoluteSize.Y)
  3481. local HueX =
  3482. (math.clamp(Mouse.X- Hue.AbsolutePosition.X, 0, Hue.AbsoluteSize.X) /
  3483. Hue.AbsoluteSize.X)
  3484.  
  3485. HueSelection.Position = UDim2.new(HueX, 0, HueY, 0)
  3486. ColorH = 1 - HueY
  3487.  
  3488. UpdateColorPicker(true)
  3489. end
  3490. )
  3491. end
  3492. end
  3493. )
  3494.  
  3495. Hue.InputEnded:Connect(
  3496. function(input)
  3497. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  3498. if HueInput then
  3499. HueInput:Disconnect()
  3500. end
  3501. end
  3502. end
  3503. )
  3504. local sk = false
  3505. TextButton_Dropdown.MouseButton1Click:Connect(function()
  3506. if sk == false then
  3507. TweenService:Create(
  3508. Pixker,
  3509. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3510. {Size = UDim2.new(0, 213, 0, 180)}
  3511. ):Play()
  3512. else
  3513. TweenService:Create(
  3514. Pixker,
  3515. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3516. {Size = UDim2.new(0, 213, 0, 33)}
  3517. ):Play()
  3518. end
  3519. sk = not sk
  3520. end
  3521. )
  3522. BTN_XD.MouseButton1Click:Connect(
  3523. function()
  3524. TweenService:Create(
  3525. Pixker,
  3526. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3527. {Size = UDim2.new(0, 213, 0, 33)}
  3528. ):Play()
  3529. sk = not sk
  3530. end
  3531. )
  3532.  
  3533.  
  3534. end
  3535. function items:Label(text,image)
  3536. if image == nil then
  3537. image = "6031229361"
  3538. end
  3539. local labaelchange = {}
  3540. local LabelFrame = Instance.new("Frame")
  3541.  
  3542.  
  3543. LabelFrame.Name = "Mainframenoti"
  3544. LabelFrame.Parent = ScrollingFrame_Pageframe
  3545. LabelFrame.BackgroundColor3 = Color3.fromRGB(23, 23, 23)
  3546. LabelFrame.BackgroundTransparency = 0
  3547. LabelFrame.BorderSizePixel = 0
  3548. LabelFrame.ClipsDescendants = false
  3549. LabelFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  3550. LabelFrame.Position = UDim2.new(0.498, 0, 0.5, 0)
  3551. LabelFrame.Size = UDim2.new(0, 213, 0, 28)
  3552.  
  3553. local LabelFarm2 = Instance.new("TextLabel")
  3554.  
  3555. LabelFarm2.Parent = LabelFrame
  3556. LabelFarm2.Name = "TextLabel_Tap"
  3557. LabelFarm2.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  3558. LabelFarm2.Size =UDim2.new(0, 130, 0,24 )
  3559. LabelFarm2.Font = Enum.Font.SourceSansSemibold
  3560. LabelFarm2.Text = text
  3561. LabelFarm2.TextColor3 = Color3.fromRGB(255, 255, 255)
  3562. LabelFarm2.TextSize = 12.000
  3563. LabelFarm2.AnchorPoint = Vector2.new(0.5, 0.5)
  3564. LabelFarm2.Position = UDim2.new(0.5, 0, 0.5, 0)
  3565. LabelFarm2.TextXAlignment = Enum.TextXAlignment.Center
  3566. LabelFarm2.BackgroundTransparency = 1
  3567. LabelFarm2.TextWrapped = true
  3568.  
  3569. local ImageLabel_gx = Instance.new("ImageLabel")
  3570.  
  3571. ImageLabel_gx.Parent = LabelFrame
  3572. ImageLabel_gx.BackgroundTransparency = 1.000
  3573. ImageLabel_gx.BorderSizePixel = 0
  3574. ImageLabel_gx.Size = UDim2.new(0, 18, 0, 18)
  3575. ImageLabel_gx.AnchorPoint = Vector2.new(0.5, 0.5)
  3576. ImageLabel_gx.Position = UDim2.new(0.06, 0, 0.45, 0)
  3577. ImageLabel_gx.Image = "http://www.roblox.com/asset/?id="..tostring(image)
  3578. ImageLabel_gx.BackgroundTransparency = 1
  3579.  
  3580. local noticore55 = Instance.new("UICorner")
  3581.  
  3582. noticore55.CornerRadius = UDim.new(0, 4)
  3583. noticore55.Name = ""
  3584. noticore55.Parent = LabelFarm2
  3585.  
  3586. local noticore2777 = Instance.new("UICorner")
  3587.  
  3588. noticore2777.CornerRadius = UDim.new(0, 4)
  3589. noticore2777.Name = ""
  3590. noticore2777.Parent = LabelFrame
  3591.  
  3592. local LabelStroke = Instance.new("UIStroke")
  3593.  
  3594. LabelStroke.Thickness = 1
  3595. LabelStroke.Name = ""
  3596. LabelStroke.Parent = LabelFrame
  3597. LabelStroke.LineJoinMode = Enum.LineJoinMode.Round
  3598. LabelStroke.Color = Color3.fromRGB(255, 255, 255)
  3599. LabelStroke.Transparency = 0.7
  3600.  
  3601. LabelFrame.MouseEnter:Connect(function()
  3602. TweenService:Create(
  3603. LabelStroke,
  3604. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3605. {Transparency =0}
  3606. ):Play()
  3607. end
  3608. )
  3609. LabelFrame.MouseLeave:Connect(function()
  3610. TweenService:Create(
  3611. LabelStroke,
  3612. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  3613. {Transparency =0.7}
  3614. ):Play()
  3615. end
  3616. )
  3617. function labaelchange:Change(text2)
  3618. LabelFarm2.Text = text2
  3619. end
  3620. return labaelchange
  3621. end
  3622. return items
  3623. end
  3624. return page
  3625. end
  3626. return top
  3627. end
  3628.  
  3629.  
  3630. local Window = create:Win("Nothing Hub")
  3631.  
  3632. game:GetService("CoreGui").redui.MainSceen.Visible = false
  3633.  
  3634. create:Notifile("Nothing Hub", "Welcome to Nothing Hub", 5)
  3635.  
  3636. game:GetService("CoreGui").redui.MainSceen.Visible = true
  3637.  
  3638.  
  3639. local Tap1 = Window:Taps("Auto Farm")
  3640. local Tap2 = Window:Taps("Find Fruit")
  3641. local Tap6 = Window:Taps("Quest")
  3642. local Tap3 = Window:Taps("Teleport & Buy")
  3643. local Tap4 = Window:Taps("Farm Bounty")
  3644. local Tap5 = Window:Taps("Setting")
  3645.  
  3646. local page1 = Tap1:newpage()
  3647. local page2 = Tap1:newpage()
  3648. local page3 = Tap2:newpage()
  3649. local page4 = Tap2:newpage()
  3650. local page5 = Tap3:newpage()
  3651. local page6 = Tap3:newpage()
  3652. local page7 = Tap4:newpage()
  3653. local page8 = Tap4:newpage()
  3654. local page9 = Tap5:newpage()
  3655. local page10 = Tap5:newpage()
  3656. local page11 = Tap6:newpage()
  3657. local page12 = Tap6:newpage()
  3658.  
  3659. local plr = game.Players.LocalPlayer
  3660.  
  3661. local vu = game:GetService("VirtualUser")
  3662. game:GetService("Players").LocalPlayer.Idled:connect(function()
  3663. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  3664. wait(1)
  3665. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  3666. end)
  3667.  
  3668. local remotes = {}
  3669. local a
  3670. a=hookmetamethod(game,"__namecall",function(self,...)
  3671. local args = {...}
  3672. local method = getnamecallmethod()
  3673. if method == "FireServer" or method == "InvokeServer" then
  3674. if self.Name == "RemoteEvent" and not getgenv().goro and args[3] == "StopCharging" then
  3675. remotes[self.Name] = args[1]
  3676. return a(self,unpack(args))
  3677. end
  3678. end
  3679. return a(self,...)
  3680. end)
  3681.  
  3682. local attackremote = {}
  3683.  
  3684. local a
  3685.  
  3686. a=hookmetamethod(game,"__namecall",function(self,...)
  3687. local args = {...}
  3688. local method = getnamecallmethod()
  3689. if method == "FireServer" or method == "InvokeServer" then
  3690. if self.Name == "RequestAnimation" and not getgenv().fastattack then
  3691. attackremote[self.Name] = args[1]
  3692. return a(self,unpack(args))
  3693. end
  3694. end
  3695. return a(self,...)
  3696. end)
  3697.  
  3698. function serializeTable(val, name, skipnewlines, depth)
  3699. skipnewlines = skipnewlines or false
  3700. depth = depth or 0
  3701.  
  3702. local tmp = string.rep("", depth)
  3703.  
  3704. if name then tmp = tmp end
  3705.  
  3706. if type(val) == "table" then
  3707. tmp = tmp .. (not skipnewlines and "" or "")
  3708.  
  3709. for k, v in pairs(val) do
  3710. tmp = tmp .. serializeTable(v, k, skipnewlines, depth + 1) .. (not skipnewlines and "" or "")
  3711. end
  3712.  
  3713. tmp = tmp .. string.rep("", depth)
  3714. elseif type(val) == "number" then
  3715. tmp = tmp .. tostring(val)
  3716. elseif type(val) == "string" then
  3717. tmp = tmp .. string.format("%q", val)
  3718. elseif type(val) == "boolean" then
  3719. tmp = tmp .. (val and "true" or "false")
  3720. elseif type(val) == "function" then
  3721. tmp = tmp .. "func: " .. debug.getinfo(val).name
  3722. else
  3723. tmp = tmp .. tostring(val)
  3724. end
  3725.  
  3726. return tmp
  3727. end
  3728.  
  3729. local mt = getrawmetatable(game)
  3730. local namecall = mt.__namecall
  3731. local setreadonly = setreadonly or make_writable
  3732.  
  3733.  
  3734. setreadonly(mt, false)
  3735.  
  3736. mt.__namecall = newcclosure(function(self, ...)
  3737. local args = {...}
  3738. local arguments = args
  3739. local a = {}
  3740. for i = 1, #arguments - 1 do
  3741. a[i] = arguments[i]
  3742. end
  3743. local method = getnamecallmethod()
  3744.  
  3745. if method == 'FireServer' or method == "InvokeServer" then
  3746. if self.Name == 'Drown' and getgenv().Save["NoDame"] then
  3747. if args[1] then
  3748. return nil
  3749. end
  3750. end
  3751. end
  3752.  
  3753. return namecall(self, ...)
  3754. end)
  3755.  
  3756. setreadonly(mt, true)
  3757.  
  3758. local a
  3759. a=hookmetamethod(game,"__namecall",function(self,...)
  3760. local args = {...}
  3761. local method = getnamecallmethod()
  3762. if method == "FireServer" or method == "InvokeServer" then
  3763. if self.Name == "RemoteEvent" and args[3] == "StopCharging" and getgenv().Save["Autoskillvip"] then
  3764. args[6] = 100
  3765. return a(self,unpack(args))
  3766. end
  3767. end
  3768. return a(self,...)
  3769. end)
  3770. local a
  3771. a=hookmetamethod(game,"__namecall",function(self,...)
  3772. local args = {...}
  3773. local method = getnamecallmethod()
  3774. if method == "FireServer" or method == "InvokeServer" then
  3775. if self.Name == "RemoteEvent" and args[3] == "StopCharging" and getgenv().Save["Autoskillvip2"] then
  3776. args[6] = "500"
  3777. return a(self,unpack(args))
  3778. end
  3779. end
  3780. return a(self,...)
  3781. end)
  3782. local a
  3783. a=hookmetamethod(game,"__namecall",function(self,...)
  3784. local args = {...}
  3785. local method = getnamecallmethod()
  3786. if method == "FireServer" or method == "InvokeServer" then
  3787. if self.Name == "RemoteEvent" and args[3] == "StopCharging" and getgenv().Save["Autoskillvip3"] then
  3788. args[6] = "1000"
  3789. return a(self,unpack(args))
  3790. end
  3791. end
  3792. return a(self,...)
  3793. end)
  3794. local a
  3795. a=hookmetamethod(game,"__namecall",function(self,...)
  3796. local args = {...}
  3797. local method = getnamecallmethod()
  3798. if method == "FireServer" or method == "InvokeServer" then
  3799. if self.Name == "RemoteEvent" and args[3] == "StopCharging" and getgenv().Save["Autoskillvip4"] then
  3800. args[6] = "10000"
  3801. return a(self,unpack(args))
  3802. end
  3803. end
  3804. return a(self,...)
  3805. end)
  3806. local a
  3807. a=hookmetamethod(game,"__namecall",function(self,...)
  3808. local args = {...}
  3809. local method = getnamecallmethod()
  3810. if method == "FireServer" or method == "InvokeServer" then
  3811. if self.Name == "RemoteEvent" and args[3] == "StopCharging" and getgenv().Save["Autoskillvip5"] then
  3812. args[6] = "100000"
  3813. return a(self,unpack(args))
  3814. end
  3815. end
  3816. return a(self,...)
  3817. end)
  3818. local a
  3819. a=hookmetamethod(game,"__namecall",function(self,...)
  3820. local args = {...}
  3821. local method = getnamecallmethod()
  3822. if method == "FireServer" or method == "InvokeServer" then
  3823. if self.Name == "RemoteEvent" and args[3] == "StopCharging" and getgenv().Save["Autoskillvip6"] then
  3824. args[6] = "100000000"
  3825. return a(self,unpack(args))
  3826. end
  3827. end
  3828. return a(self,...)
  3829. end)
  3830. local a
  3831. a=hookmetamethod(game,"__namecall",function(self,...)
  3832. local args = {...}
  3833. local method = getnamecallmethod()
  3834. if method == "FireServer" or method == "InvokeServer" then
  3835. if self.Name == "RemoteEvent" and args[3] == "StopCharging" and getgenv().Save["Autoskillvip7"] then
  3836. args[6] = "1000000000"
  3837. return a(self,unpack(args))
  3838. end
  3839. end
  3840. return a(self,...)
  3841. end)
  3842. local a
  3843. a=hookmetamethod(game,"__namecall",function(self,...)
  3844. local args = {...}
  3845. local method = getnamecallmethod()
  3846. if method == "FireServer" or method == "InvokeServer" then
  3847. if self.Name == "RemoteEvent" and args[3] == "StopCharging" and getgenv().Save["Autoskillvip8"] then
  3848. args[6] = "10000000000"
  3849. return a(self,unpack(args))
  3850. end
  3851. end
  3852. return a(self,...)
  3853. end)
  3854. local a
  3855. a=hookmetamethod(game,"__namecall",function(self,...)
  3856. local args = {...}
  3857. local method = getnamecallmethod()
  3858. if method == "FireServer" or method == "InvokeServer" then
  3859. if self.Name == "RemoteEvent" and args[3] == "StopCharging" and getgenv().Save["Autoskillvip9"] then
  3860. args[6] = "100000000000"
  3861. return a(self,unpack(args))
  3862. end
  3863. end
  3864. return a(self,...)
  3865. end)
  3866.  
  3867.  
  3868.  
  3869. function loadcheck()
  3870. if isfile("Nothing Hub.json") then
  3871. g = readfile("Nothing Hub.json")
  3872. return g
  3873. else
  3874. writefile("Nothing Hub.json",game:GetService("HttpService"):JSONEncode(getgenv().Save))
  3875. return
  3876. end
  3877. end
  3878. getgenv().Save = {
  3879. ["rejoin"] = false,
  3880. ["Mod"] = false,
  3881. ["raid"] = false,
  3882. ["quest"] = false,
  3883. ["rayleigh"] = false,
  3884. ["NoDame"] = false,
  3885. ["AutoSave"] = false,
  3886. ["BringFruit"] = false,
  3887. ["Autoskillvip"] = false,
  3888. ["Autoskillvip2"] = false,
  3889. ["Autoskillvip3"] = false,
  3890. ["Autoskillvip4"] = false,
  3891. ["Autoskillvip5"] = false,
  3892. ["Autoskillvip6"] = false,
  3893. ["Autoskillvip7"] = false,
  3894. ["Autoskillvip8"] = false,
  3895. ["Autoskillvip9"] = false,
  3896. ["skillvip1"] = false,
  3897. ["skillvip2"] = false,
  3898. ["EQUIPTOOL"] = getgenv().tool,
  3899. ["posFarm"] = tostring(getgenv().posFarm),
  3900. ["tptodie"] = false,
  3901. ["tptospawn"] = false,
  3902. ["playerfarmbounty"] = getgenv().bobo,
  3903. ["fixbugspawn"] = false,
  3904. ["spawn"] = false,
  3905. ["MethodBty"] = getgenv().methodbty,
  3906. ["WebHookTF"] = false,
  3907. ["WebHookText"] = getgenv().webhook,
  3908. ["Hopseverf"] = false,
  3909. ["Hopseverp"] = false,
  3910. ["Farmmelee"] = false,
  3911. ["Choosefruit"] = getgenv().choosefruit,
  3912. ["FruitFarm"] = false,
  3913. ["timespam"] = 0.5,
  3914. ["savetime"] = false,
  3915. ["bringcp"] = false,
  3916. ["Phoenix"] = false,
  3917. ["Magma"] = false,
  3918. ["Flare"] = false,
  3919. ["Chilly"] = false,
  3920. ["Chilly2"] = false,
  3921. ["Bomb"] = false,
  3922. ["Dark"] = false,
  3923. ["Goro"] = false,
  3924. ["Pika"] = false,
  3925. ["gravity"] = false,
  3926. ["gravity1"] = false,
  3927. ["gravity2"] = false,
  3928. ["gravity3"] = false,
  3929. ["vampire1"] = false,
  3930. ["ChooseMet"] = getgenv().ChooseMet,
  3931. ["TPPLAYER"] = false,
  3932. ["acccp"] = false,
  3933. ["autostore"] = false,
  3934. ["findsam"] = false,
  3935. ["Openbox"] = false,
  3936. ["Quake"] = false,
  3937. ["Quake2"] = false,
  3938. ["Quake3"] = false,
  3939. ["FixSpam"] = false,
  3940. ["Noclip"] = false,
  3941. ["Mtdf"] = getgenv().mtdf,
  3942. ["AMtdf"] = false,
  3943. ["DistanceDefense"] = 100,
  3944. ["FastAttack"] = false,
  3945. ["Buso"] = false,
  3946. ["Webhookfp"] = false,
  3947. ["mixer"] = false,
  3948. ["fish"] = false,
  3949. ["hopmr"] = false,
  3950. ["drink"] = false,
  3951. ["killplayers"] = false,
  3952. ["mtfa"] = getgenv().mtfa
  3953. }
  3954.  
  3955. function LoadSetting()
  3956. if isfile("Nothing Hub.json") then
  3957. vb = game:GetService("HttpService"):JSONDecode(readfile("Nothing Hub.json"))
  3958. getgenv().Save = vb
  3959. return vb
  3960. else
  3961. loadcheck()
  3962. return
  3963. end
  3964. end
  3965.  
  3966. function SaveSetting()
  3967. if isfile("Nothing Hub.json") then
  3968. f = writefile
  3969. writefile("Nothing Hub.json",game:GetService("HttpService"):JSONEncode(getgenv().Save))
  3970. return f
  3971. else
  3972. loadcheck()
  3973. return
  3974. end
  3975. end
  3976.  
  3977.  
  3978. loadcheck()
  3979. LoadSetting()
  3980.  
  3981. function ATTACK()
  3982. game:GetService'VirtualUser':CaptureController()
  3983. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3984. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  3985. end
  3986.  
  3987. page1:Label("Main")
  3988. page5:Label("Tp IsLand")
  3989. page6:Label("Buy Item")
  3990. page8:Label("Farm All Players")
  3991.  
  3992. page8:Toggle("Farm All Players",getgenv().Save["killplayers"],function(bool)
  3993. getgenv().Save["killplayers"] = bool
  3994. if getgenv().Save["AutoSave"] then
  3995. SaveSetting()
  3996. end
  3997. end)
  3998.  
  3999. page8:Drop("Choose Method", false,{"Magma", "Rumble", "Pika" , "Flare" , "Vampire" , "Quake","Gravity","Flare"} , function(t)
  4000. getgenv().mtfa = t
  4001. getgenv().Save["mtfa"] = getgenv().mtfa
  4002. if getgenv().Save["AutoSave"] then
  4003. SaveSetting()
  4004. end
  4005. end)
  4006.  
  4007.  
  4008. if getgenv().Save["mtfa"] == nil then
  4009. getgenv().Save["mtfa"] = ""
  4010. end
  4011.  
  4012. page8:Label("Farm Players/War")
  4013. page10:Label("Auto Defense. When someone comes close, automatically kills")
  4014.  
  4015. page10:Drop("Choose Method", false,{"Magma", "Rumble", "Pika" , "Flare" , "Vampire" , "Quake","Gravity","Flare"} , function(t)
  4016. getgenv().mtdf = t
  4017. getgenv().Save["Mtdf"] = getgenv().mtdf
  4018. if getgenv().Save["AutoSave"] then
  4019. SaveSetting()
  4020. end
  4021. end)
  4022.  
  4023. page10:Slider("Distance Defense", false , false , 0 , 10000 , tonumber(getgenv().Save["DistanceDefense"]),tonumber(getgenv().Save["DistanceDefense"]),false, function(t)
  4024. getgenv().Save["DistanceDefense"] = t
  4025. if getgenv().Save["AutoSave"] then
  4026. SaveSetting()
  4027. end
  4028. print(getgenv().Save["DistanceDefense"])
  4029. end)
  4030.  
  4031.  
  4032. page10:Toggle("Auto Defense", getgenv().Save["AMtdf"], function(t)
  4033. getgenv().Save["AMtdf"] = t
  4034. if getgenv().Save["AutoSave"] then
  4035. SaveSetting()
  4036. end
  4037. end)
  4038.  
  4039. page5:Drop("Choose Island" , false, {
  4040. "Grassy","Snowy Mountains","Pursuer's Island","Bar","Cliffs","Windmill", "Cave","Krizma","Pirate","Green","Trees","Pyramid","Package","Snowy","Mountain", "Marine Ford","Sand Castle", "Forest","Evil",
  4041. "Crescent","Islands","Town","Rocky","Palm","Sand","Sand 2","Small","Tiny","Super Tiny","Grass","Atlar","Safe Place"
  4042. }, function(t)
  4043. getgenv().tpisland = t
  4044. if getgenv().tpisland == "Grassy" then
  4045. plr.Character.HumanoidRootPart.CFrame = CFrame.new(737, 241, 1209)
  4046. elseif getgenv().tpisland == "Snowy Mountains" then
  4047. plr.Character.HumanoidRootPart.CFrame = CFrame.new(6501, 408, -1261)
  4048. elseif getgenv().tpisland == "Pursuer's Island" then
  4049. plr.Character.HumanoidRootPart.CFrame = CFrame.new(4847, 570, -7143)
  4050. elseif getgenv().tpisland == "Bar" then
  4051. plr.Character.HumanoidRootPart.CFrame = CFrame.new(1522, 260, 2188)
  4052. elseif getgenv().tpisland == "Cliffs" then
  4053. plr.Character.HumanoidRootPart.CFrame = CFrame.new(4598, 217, 4964)
  4054. elseif getgenv().tpisland == "Windmill" then
  4055. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-7, 224, -91)
  4056. elseif getgenv().tpisland == "Cave" then
  4057. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-280, 217, -831)
  4058. elseif getgenv().tpisland == "Krizma" then
  4059. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-1109, 341, 1645)
  4060. elseif getgenv().tpisland == "Pirate" then
  4061. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-1283, 218, -1348)
  4062. elseif getgenv().tpisland == "Green" then
  4063. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-2727, 253, 1041)
  4064. elseif getgenv().tpisland == "Trees" then
  4065. plr.Character.HumanoidRootPart.CFrame = CFrame.new(1068, 217, 3351)
  4066. elseif getgenv().tpisland == "Pyramid" then
  4067. plr.Character.HumanoidRootPart.CFrame = CFrame.new(118, 216, 4773)
  4068. elseif getgenv().tpisland == "Package" then
  4069. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-1668, 217, -300)
  4070. elseif getgenv().tpisland == "Snowy" then
  4071. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-1896, 222, 3385)
  4072. elseif getgenv().tpisland == "Mountain" then
  4073. plr.Character.HumanoidRootPart.CFrame = CFrame.new(2052, 488, -701)
  4074. elseif getgenv().tpisland == "Marine Ford" then
  4075. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-3164, 296, -3780)
  4076. elseif getgenv().tpisland == "Sand Castle" then
  4077. plr.Character.HumanoidRootPart.CFrame = CFrame.new(1020, 224, -3277)
  4078. elseif getgenv().tpisland == "Forest" then
  4079. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-5781, 216, 114)
  4080. elseif getgenv().tpisland == "Evil" then
  4081. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-5169, 523, -7803)
  4082. elseif getgenv().tpisland == "Crescent" then
  4083. plr.Character.HumanoidRootPart.CFrame = CFrame.new(3193, 357, 1670)
  4084. elseif getgenv().tpisland == "Islands" then
  4085. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-4319, 245, 5252)
  4086. elseif getgenv().tpisland == "Town" then
  4087. plr.Character.HumanoidRootPart.CFrame = CFrame.new(1818, 218, 755)
  4088. elseif getgenv().tpisland == "Rocky" then
  4089. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-37, 229, 2149)
  4090. elseif getgenv().tpisland == "Palm" then
  4091. plr.Character.HumanoidRootPart.CFrame = CFrame.new(766, 216, -1374)
  4092. elseif getgenv().tpisland == "Sand" then
  4093. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-2747, 216, -942)
  4094. elseif getgenv().tpisland == "Sand 2" then
  4095. plr.Character.HumanoidRootPart.CFrame = CFrame.new(162, 216, -2265)
  4096. elseif getgenv().tpisland == "Small" then
  4097. plr.Character.HumanoidRootPart.CFrame = CFrame.new(1237, 240, -244)
  4098. elseif getgenv().tpisland == "Tiny" then
  4099. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-1235, 223, 623)
  4100. elseif getgenv().tpisland == "Super Tiny" then
  4101. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-4007, 216, -2190)
  4102. elseif getgenv().tpisland == "Grass" then
  4103. plr.Character.HumanoidRootPart.CFrame = CFrame.new(2096, 217, -1884)
  4104. elseif getgenv().tpisland == "Atlar" then
  4105. plr.Character.HumanoidRootPart.CFrame = game.workspace.Altar.RecepticalEffect.CFrame * CFrame.new(0, 5, 0)
  4106. elseif getgenv().tpisland == "Safe Place" then
  4107. for i,v in pairs(game:GetService("Workspace").ISLAND:GetChildren()) do
  4108. if v.Name == "Part" then
  4109. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame * CFrame.new(0,10,0)
  4110. end
  4111. end
  4112. end
  4113. end)
  4114. page6:Drop("Choose NPC" , false, {
  4115. "Rayleigh","Better Drink","Drink","Flail","QuestFish","Krizma","Sword","Sniper","Emote","Affinity","Fish","Expertise"
  4116.  
  4117. }, function(t)
  4118. getgenv().tpmerchant = t
  4119. if getgenv().tpmerchant == "Rayleigh" then
  4120. local emoi = game:GetService("Workspace").Merchants.QuestHakiMerchant.Clickable.Available.Value
  4121. if emoi == true
  4122. then
  4123. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Merchants.QuestHakiMerchant.HumanoidRootPart.CFrame
  4124. else
  4125. create:Notifile("Nothing Hub", "Rayleigh did not spawn.!", 5)
  4126. end
  4127. elseif getgenv().tpmerchant == "Better Drink" then
  4128. plr.Character.HumanoidRootPart.CFrame = CFrame.new(1493, 260, 2171)
  4129. elseif getgenv().tpmerchant == "Drink" then
  4130. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-1282, 218, -1368)
  4131. elseif getgenv().tpmerchant == "Flail" then
  4132. plr.Character.HumanoidRootPart.CFrame = CFrame.new(1110, 217, 3369)
  4133. elseif getgenv().tpmerchant == "QuestFish" then
  4134. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-1702, 216, -325)
  4135. elseif getgenv().tpmerchant == "Krizma" then
  4136. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-1072, 361, 1669)
  4137. elseif getgenv().tpmerchant == "Sword" then
  4138. plr.Character.HumanoidRootPart.CFrame = CFrame.new(1005, 224, -3339)
  4139. elseif getgenv().tpmerchant == "Sniper" then
  4140. plr.Character.HumanoidRootPart.CFrame = CFrame.new(-1843, 222, 3416)
  4141. elseif getgenv().tpmerchant == "Emote" then
  4142. plr.Character.HumanoidRootPart.CFrame = CFrame.new(1522, 265, 2165)
  4143. elseif getgenv().tpmerchant == "Affinity" then
  4144. plr.Character.HumanoidRootPart.CFrame = CFrame.new(113, 278, 4952)
  4145. elseif getgenv().tpmerchant == "Fish" then
  4146. plr.Character.HumanoidRootPart.CFrame = CFrame.new(1983, 218, 566)
  4147. elseif getgenv().tpmerchant == "Expertise" then
  4148. plr.Character.HumanoidRootPart.CFrame = CFrame.new(903, 270, 1219)
  4149. end
  4150. end)
  4151. page6:Label("Buy Drink")
  4152. page6:Drop("Choose Drink",false, {"Lemonade+", "Smoothie+" , "Juice+", "Cider+", "Lemonade", "Smoothie", "Juice", "Cider" } , function(t)
  4153. getgenv().drink = t
  4154. end)
  4155. page6:TextBox("Amount",". . .",function(a)
  4156. getgenv().amountdrink = a
  4157. end)
  4158. page6:Button("Buy Drink",function()
  4159. drink()
  4160. end)
  4161. page6:Button("Instant Drink",function()
  4162. instdrink()
  4163. end)
  4164. page11:Label("Haki Quest ( lvl 1k+ )")
  4165. page11:Toggle("Auto Get Haki",getgenv().Save["rayleigh"],function(r)
  4166. getgenv()Save["rayleigh"] = r
  4167. if getgenv().Save["rayleigh"] then
  4168. SaveSetting()
  4169. end
  4170. end)
  4171. page11:Label("Expertise Quest")
  4172. page11:Toggle("Auto Expertise",getgenv().Save["quest"],function(r)
  4173. getgenv()Save["quest"] = r
  4174. if getgenv().Save["quest"] then
  4175. SaveSetting()
  4176. end
  4177. end)
  4178. page11:Label("Fishing")
  4179. page11:Toggle("Auto Fish",getgenv().Save["fish"],function(r)
  4180. getgenv()Save["fish"] = r
  4181. if getgenv().Save["fish"] then
  4182. SaveSetting()
  4183. end
  4184. end)
  4185. page12:Label("Open Gui")
  4186. page12:Drop("Select Npc",false,{"BetterDrinkMerchant","DrinkMerchant","FlailMerchant","QuestFishMerchant","QuestMerchant"
  4187. ,"KrizmaMerch","SwordMerchant","SniperMerchant","Boat2Merchant","Boat1Merchant","Boat4Merchant","Boat3Merchant","EmoteMerchant","AffinityMerchant","QuestMerchant"
  4188. ,"FishMerchant","ExpertiseMerchant","QuestHakiMerchant"}, function(c)
  4189. getgenv().gui = c
  4190. end)
  4191. page12:Button("Talk", function()
  4192. for i,v in pairs(game:GetService("Workspace").Merchants:GetChildren()) do
  4193. if v.Name == getgenv().gui then
  4194. fireclickdetector(v.Clickable.ClickDetector)
  4195. end
  4196. end
  4197. end)
  4198. page12:Label("Haki Farm")
  4199. page12:Button("Haki 1",function()
  4200. haki1()
  4201. end)
  4202. page12:Button("Haki 2",function()
  4203. haki2()
  4204. end)
  4205. getgenv().NamePlayer = {}
  4206. for i,v in pairs(game.Players:GetChildren()) do
  4207. table.insert(getgenv().NamePlayer ,v.Name)
  4208. end
  4209.  
  4210. local concu = page8:Drop("Choose Player",false ,getgenv().NamePlayer , function(t)
  4211. getgenv().playerr = t
  4212. getgenv().Save["Players"] = getgenv().playerr
  4213. end)
  4214.  
  4215. if getgenv().Save["Players"] == nil then
  4216. getgenv().Save["Players"] = ""
  4217. end
  4218.  
  4219. local plr1 = game.Players.LocalPlayer.Character
  4220. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  4221.  
  4222. page8:Button("Refresh Players",function()
  4223. concu:Clear()
  4224. for i,v in pairs(game.Players:GetChildren()) do
  4225. concu:Add(v.Name)
  4226. end
  4227. end)
  4228.  
  4229. if getgenv().Save["ChooseMet"] == nil then
  4230. getgenv().Save["ChooseMet"] = ""
  4231. end
  4232.  
  4233. page8:Drop("Select Method TP", false, {"Angel", "Normal", "Under"}, function(t)
  4234. getgenv().ChooseMet = t
  4235. getgenv().Save["ChooseMet"] = getgenv().ChooseMet
  4236. if getgenv().Save["AutoSave"] then
  4237. SaveSetting()
  4238. end
  4239. end)
  4240.  
  4241. page8:Toggle("TP TO PLAYER",getgenv().Save["TPPLAYER"],function(bool)
  4242. getgenv().Save["TPPLAYER"] = bool
  4243. local plr1 = game.Players.LocalPlayer.Character
  4244. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  4245. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude < 1000 and getgenv().Save["Players"] ~= nil and getgenv().Save["Players"] ~= "" then
  4246. create:Notifile("Nothing Hub", "Spawn Zone", 3)
  4247. end
  4248. if getgenv().Save["ChooseMet"] == "" then
  4249. create:Notifile("Nothing Hub", "Choose Method TP first", 3)
  4250. end
  4251. if getgenv().Save["AutoSave"] then
  4252. SaveSetting()
  4253. end
  4254. end)
  4255.  
  4256. page8:Toggle("spamskill Phoenix",getgenv().Save["Phoenix"],function(bool)
  4257. getgenv().Save["Phoenix"] = bool
  4258. if getgenv().Save["AutoSave"] then
  4259. SaveSetting()
  4260. end
  4261. end)
  4262. page8:Toggle("spamskill Magma",getgenv().Save["Magma"],function(bool)
  4263. getgenv().Save["Magma"] = bool
  4264. if getgenv().Save["AutoSave"] then
  4265. SaveSetting()
  4266. end
  4267. end)
  4268. page8:Toggle("spamskill Flare",getgenv().Save["Flare"],function(bool)
  4269. getgenv().Save["Flare"] = bool
  4270. if getgenv().Save["AutoSave"] then
  4271. SaveSetting()
  4272. end
  4273. end)
  4274. page8:Toggle("spamskill Chilly 1",getgenv().Save["Chilly"],function(bool)
  4275. getgenv().Save["Chilly"] = bool
  4276. if getgenv().Save["AutoSave"] then
  4277. SaveSetting()
  4278. end
  4279. end)
  4280. page8:Toggle("spamskill Chilly 2",getgenv().Save["Chilly2"],function(bool)
  4281. getgenv().Save["Chilly2"] = bool
  4282. if getgenv().Save["AutoSave"] then
  4283. SaveSetting()
  4284. end
  4285. end)
  4286. page8:Toggle("spamskill Bomb",getgenv().Save["Bomb"],function(bool)
  4287. getgenv().Save["Bomb"] = bool
  4288. if getgenv().Save["AutoSave"] then
  4289. SaveSetting()
  4290. end
  4291. end)
  4292. page8:Toggle("spamskill Dark",getgenv().Save["Dark"],function(bool)
  4293. getgenv().Save["Dark"] = bool
  4294. if getgenv().Save["AutoSave"] then
  4295. SaveSetting()
  4296. end
  4297. end)
  4298. page8:Toggle("spamskill Goro",getgenv().Save["Goro"],function(bool)
  4299. getgenv().Save["Goro"] = bool
  4300. if getgenv().Save["AutoSave"] then
  4301. SaveSetting()
  4302. end
  4303. end)
  4304. page8:Toggle("spamskill Pika",getgenv().Save["Pika"],function(bool)
  4305. getgenv().Save["Pika"] = bool
  4306. if getgenv().Save["AutoSave"] then
  4307. SaveSetting()
  4308. end
  4309. end)
  4310. page8:Toggle("spamskill gravity 1",getgenv().Save["gravity"],function(bool)
  4311. getgenv().Save["gravity"] = bool
  4312. if getgenv().Save["AutoSave"] then
  4313. SaveSetting()
  4314. end
  4315. end)
  4316. page8:Toggle("spamskill gravity 2",getgenv().Save["gravity1"],function(bool)
  4317. getgenv().Save["gravity1"] = bool
  4318. if getgenv().Save["AutoSave"] then
  4319. SaveSetting()
  4320. end
  4321. end)
  4322. page8:Toggle("spamskill gravity 3",getgenv().Save["gravity2"],function(bool)
  4323. getgenv().Save["gravity2"] = bool
  4324. if getgenv().Save["AutoSave"] then
  4325. SaveSetting()
  4326. end
  4327. end)
  4328. page8:Toggle("spamskill gravity 4",getgenv().Save["gravity3"],function(bool)
  4329. getgenv().Save["gravity3"] = bool
  4330. if getgenv().Save["AutoSave"] then
  4331. SaveSetting()
  4332. end
  4333. end)
  4334. page8:Toggle("spamskill vampire1",getgenv().Save["vampire1"],function(bool)
  4335. getgenv().Save["vampire1"] = bool
  4336. if getgenv().Save["AutoSave"] then
  4337. SaveSetting()
  4338. end
  4339. end)
  4340.  
  4341. page8:Toggle("spamskill Quake",getgenv().Save["Quake"],function(bool)
  4342. getgenv().Save["Quake"] = bool
  4343. if getgenv().Save["AutoSave"] then
  4344. SaveSetting()
  4345. end
  4346. end)
  4347.  
  4348. page8:Toggle("spamskill Quake2",getgenv().Save["Quake2"],function(bool)
  4349. getgenv().Save["Quake2"] = bool
  4350. if getgenv().Save["AutoSave"] then
  4351. SaveSetting()
  4352. end
  4353. end)
  4354.  
  4355. page8:Toggle("spamskill Quake3",getgenv().Save["Quake3"],function(bool)
  4356. getgenv().Save["Quake3"] = bool
  4357. if getgenv().Save["AutoSave"] then
  4358. SaveSetting()
  4359. end
  4360. end)
  4361.  
  4362.  
  4363. Instance.new("Part",game:GetService("Workspace").IslandWindmill)
  4364. for i,v in pairs(game:GetService("Workspace").IslandWindmill:GetChildren()) do
  4365. if v.Name == "Part" then
  4366. v.Size = Vector3.new(60, 3, 65)
  4367. v.Position = Vector3.new(444.61990356445, 15.088070869446, 1344.7097167969)
  4368. v.Anchored = true
  4369. end
  4370. end
  4371.  
  4372. Instance.new("Part",game:GetService("Workspace").ISLAND)
  4373. for i,v in pairs(game:GetService("Workspace").ISLAND:GetChildren()) do
  4374. if v.Name == "Part" then
  4375. v.Size = Vector3.new(60, 3, 65)
  4376. v.Position = Vector3.new(math.random(10000),20000,math.random(10000))
  4377. v.Anchored = true
  4378. end
  4379. end
  4380.  
  4381. page1:Button("safe zone", function()
  4382.  
  4383. for i,v in pairs(game:GetService("Workspace").ISLAND:GetChildren()) do
  4384. if v.Name == "Part" then
  4385. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame * CFrame.new(0,10,0)
  4386. end
  4387. end
  4388.  
  4389. end)
  4390.  
  4391. page9:Toggle("Auto Save" , getgenv().Save["AutoSave"],function(t)
  4392. getgenv().Save["AutoSave"] = t
  4393. SaveSetting()
  4394. end)
  4395. page9:Label("Anti Staff")
  4396. page9:Toggle("Auto Mod" , getgenv().Save["Mod"], function(m)
  4397. create:Notifile("Nothing Hub" , "You Will Got Protect Now", 5)
  4398. getgenv().Save["Mod"] = m
  4399. if getgenv().Save["Mod"] then
  4400. SaveSetting()
  4401. end
  4402. end)
  4403. page9:Label("Rejoin")
  4404. page9:Toggle("Auto Rejoin", getgenv().Save["rejoin"], function(r)
  4405. getgenv().Save["rejoin"] = r
  4406. if getgenv().Save["rejoin"] then
  4407. SaveSetting()
  4408. end
  4409. end)
  4410.  
  4411. page9:Label("Unlock ALl Emotes")
  4412. page9:Button("Click",function()
  4413. emotes()
  4414. end)
  4415. page9:Label("Stun")
  4416. page9:Button("Anti Stun",function()
  4417. stun()
  4418. end)
  4419. page7:Label("Farm Tp To Die")
  4420.  
  4421. aaaaa = page7:Label("Pos Spawn: ")
  4422.  
  4423. page7:Button("Set Spawn", function()
  4424. getgenv().posFarm = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  4425. getgenv().Save["posFarm"] = tostring(getgenv().posFarm)
  4426. aaaaa:Change("Pos Spawn: " ..tostring(getgenv().Save["posFarm"]))
  4427. create:Notifile("Nothing Hub", "Pos Spawn: " ..tostring(getgenv().Save["posFarm"]), 3)
  4428. end)
  4429.  
  4430. if getgenv().Save["posFarm"] == nil then
  4431. getgenv().Save["posFarm"] = ""
  4432. end
  4433.  
  4434. aaaaa:Change("Pos Spawn: " ..tostring(getgenv().Save["posFarm"]))
  4435.  
  4436. function StringToCFrame(String)
  4437. local Split = string.split(String, ",")
  4438. return CFrame.new(Split[1],Split[2],Split[3],Split[4],Split[5],Split[6],Split[7],Split[8],Split[9],Split[10],Split[11],Split[12])
  4439. end
  4440.  
  4441. page7:Toggle("Tp To Die",getgenv().Save["tptodie"],function(t)
  4442. getgenv().Save["tptodie"] = t
  4443. if getgenv().Save["AutoSave"] then
  4444. SaveSetting()
  4445. end
  4446. end)
  4447.  
  4448. page7:Toggle("Tp To Spawn",getgenv().Save["tptospawn"],function(t)
  4449. getgenv().Save["tptospawn"] = t
  4450. if getgenv().Save["AutoSave"] then
  4451. SaveSetting()
  4452. end
  4453. end)
  4454.  
  4455. page1:Button("Melee V1 (500 melee can use it)", function()
  4456. local A_1 = "Seastone Cestus"
  4457. local Event = game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].UpdateMelee
  4458. Event:FireServer(A_1)
  4459. create:Notifile("Nothing Hub", "500 Melee Can Use", 3)
  4460. if getgenv().Save["AutoSave"] then
  4461. SaveSetting()
  4462. end
  4463. end)
  4464.  
  4465. page1:Toggle("No dame water",getgenv().Save["NoDame"],function(x)
  4466. getgenv().Save["NoDame"] = x
  4467. if getgenv().Save["AutoSave"] then
  4468. SaveSetting()
  4469. end
  4470. end)
  4471.  
  4472.  
  4473. page1:Toggle("Auto Haki Buso",getgenv().Save["Buso"],function(x)
  4474. getgenv().Save["Buso"] = x
  4475. if getgenv().Save["AutoSave"] then
  4476. SaveSetting()
  4477. end
  4478. end)
  4479.  
  4480. page3:Label("Main Check Fruit")
  4481.  
  4482. page3:Toggle("Bring Fruit",getgenv().Save["BringFruit"],function(x)
  4483. getgenv().Save["BringFruit"] = x
  4484. if getgenv().Save["AutoSave"] then
  4485. SaveSetting()
  4486. end
  4487. end)
  4488. page3:Button("Test WebHook",function()
  4489. pcall(function()
  4490. local url = getgenv().Save["WebHookText"]
  4491. local data = {
  4492. ["content"] = "Test Webhook",
  4493. ["embeds"] = {
  4494. {
  4495. ["title"] = " Nothing Hub Test WebHook",
  4496. ["description"] = "Neon was here",
  4497. ["type"] = "rich",
  4498. ["color"] = tonumber(0xff8200),
  4499. }
  4500. }
  4501. }
  4502. local newdata = game:GetService("HttpService"):JSONEncode(data)
  4503.  
  4504. local headers = {
  4505. ["content-type"] = "application/json"
  4506. }
  4507. request = http_request or request or HttpPost or syn.request
  4508. local abcdef = {Url = url, Body = newdata, Method = "POST", Headers = headers}
  4509. request(abcdef)
  4510. end)
  4511. end)
  4512.  
  4513. page3:Button("Check Fruit Webhook or F9",function()
  4514. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  4515. for x,y in pairs(v.Backpack:GetChildren()) do
  4516. if (string.find(y.Name, "Quake") or string.find(y.Name, "Phoenix") or string.find(y.Name, "Dark") or string.find(y.Name, "Vampire") or string.find(y.Name, "Grayity") or string.find(y.Name, "Ope") or string.find(y.Name, "Venom") or string.find(y.Name, "Candy Fruit") or string.find(y.Name, "Hollow")or string.find(y.Name, "Chilly")or string.find(y.Name, "Gas")or string.find(y.Name, "Flare")or string.find(y.Name, "Light")or string.find(y.Name, "Smoke")or string.find(y.Name, "Rumble")or string.find(y.Name, "Sand")or string.find(y.Name, "Magma")or string.find(y.Name, "Snow")) then
  4517. print("Player:" .. y.Name .. y.Parent.Parent.Name .. "\n" .. y.ToolTip)
  4518. pcall(function()
  4519. local url = getgenv().Save["WebHookText"]
  4520. local data = {
  4521. ["content"] = "@everyone",
  4522. ["embeds"] = {
  4523. {
  4524. ["title"] = " Neon Congratulation The keeper DF has been found",
  4525. ["description"] = "Username: " .."".. y.Parent.Parent.Name .. "".. "\nFruit: " .. y.Name .."\n"..y.ToolTip.. "\nStop Hop Sever",
  4526. ["type"] = "rich",
  4527. ["color"] = tonumber(0xff8200),
  4528. }
  4529. }
  4530. }
  4531. local newdata = game:GetService("HttpService"):JSONEncode(data)
  4532.  
  4533. local headers = {
  4534. ["content-type"] = "application/json"
  4535. }
  4536. request = http_request or request or HttpPost or syn.request
  4537. local abcdef = {Url = url, Body = newdata, Method = "POST", Headers = headers}
  4538. request(abcdef)
  4539. print("AA")
  4540. end)
  4541. elseif y.Parent.Parent.Name ~= plr.Name and string.find(y.Name, "Fruit") and not string.find(y.Name, "Quake") and not string.find(y.Name, "Phoenix") and not string.find(y.Name, "Dark") and not string.find(y.Name, "Vampire") and not string.find(y.Name, "Grayity") and not string.find(y.Name, "Ope") and not string.find(y.Name, "Venom") and not string.find(y.Name, "Candy Fruit") and not string.find(y.Name, "Hollow")and not string.find(y.Name, "Chilly")and not string.find(y.Name, "Gas")and not string.find(y.Name, "Flare")and not string.find(y.Name, "Light")and not string.find(y.Name, "Smoke")and not string.find(y.Name, "Rumble")and not string.find(y.Name, "Sand")and not string.find(y.Name, "Magma")and not string.find(y.Name, "Snow") then
  4542. print("Player:" .. y.Name .. y.Parent.Parent.Name .. "\n" .. y.ToolTip)
  4543. local url = getgenv().Save["WebHookText"]
  4544. local data = {
  4545. ["content"] = "The keeper DF has been found",
  4546. ["embeds"] = {
  4547. {
  4548. ["title"] = "Neon",
  4549. ["description"] = "Username: " .."||".. y.Parent.Parent.Name .. "||".. "\nFruit: " .. y.Name .."\n"..y.ToolTip.."\nHop Sever Now",
  4550. ["type"] = "rich",
  4551. ["color"] = tonumber(0xff8200),
  4552. }
  4553. }
  4554. }
  4555. local newdata = game:GetService("HttpService"):JSONEncode(data)
  4556.  
  4557. local headers = {
  4558. ["content-type"] = "application/json"
  4559. }
  4560. request = http_request or request or HttpPost or syn.request
  4561. local abcdef = {Url = url, Body = newdata, Method = "POST", Headers = headers}
  4562. request(abcdef)
  4563. print("A")
  4564. end
  4565. end
  4566. end
  4567. end)
  4568.  
  4569. page3:Toggle("Webhook Player",getgenv().Save["Webhookfp"],function(x)
  4570. getgenv().Save["Webhookfp"] = x
  4571. if getgenv().Save["AutoSave"] then
  4572. SaveSetting()
  4573. end
  4574. end)
  4575.  
  4576. page3:Toggle("Hopsever Find Fruit",getgenv().Save["Hopseverf"],function(x)
  4577. getgenv().Save["Hopseverf"] = x
  4578. if getgenv().Save["AutoSave"] then
  4579. SaveSetting()
  4580. end
  4581. end)
  4582.  
  4583. page3:Toggle("HopseverFind Player",getgenv().Save["Hopseverp"],function(x)
  4584. getgenv().Save["Hopseverp"] = x
  4585. if getgenv().Save["AutoSave"] then
  4586. SaveSetting()
  4587. end
  4588. end)
  4589.  
  4590. page3:TextBox("Web Hook",". . .",function(x)
  4591. getgenv().webhook = x
  4592. getgenv().Save["WebHookText"] = getgenv().webhook
  4593. if getgenv().Save["AutoSave"] then
  4594. SaveSetting()
  4595. end
  4596. end)
  4597.  
  4598. page3:Toggle("WebHook Fruit",getgenv().Save["WebHookTF"],function(x)
  4599. getgenv().Save["WebHookTF"] = x
  4600. if getgenv().Save["AutoSave"] then
  4601. SaveSetting()
  4602. end
  4603. end)
  4604. page2:Label("Farm Etc")
  4605.  
  4606. page2:Toggle("Auto Mixer",getgenv().Save["mixer"], function(cc)
  4607. getgenv().Save["mixer"] = cc
  4608. if not getgenv().Save["drink"] == true then
  4609. create:Notifile("Notification", "Turn On Auto Drink Mixer First", 5)
  4610. getgenv().Save["mixer"] = false
  4611. end
  4612. if getgenv().Save["AutoSave"] then
  4613. SaveSetting()
  4614. end
  4615. end)
  4616.  
  4617. page2:Toggle("Auto Drink Mixer",getgenv().Save["drink"], function(cc)
  4618. getgenv().Save["drink"] = cc
  4619. if getgenv().Save["AutoSave"] then
  4620. SaveSetting()
  4621. end
  4622. end)
  4623.  
  4624. page2:Toggle("Auto Hopsever Mixer",getgenv().Save["hopmr"], function(cc)
  4625. getgenv().Save["hopmr"] = cc
  4626. if getgenv().Save["AutoSave"] then
  4627. SaveSetting()
  4628. end
  4629. end)
  4630.  
  4631. page2:Label("Farm Use Fruit")
  4632.  
  4633. page2:Drop("Choose Fruit Farm",false, {"Rumble", "Magma" , "Quake", "Gravity", "Vampire", "Pika"}, function(t)
  4634. getgenv().choosefruit = t
  4635. getgenv().Save["Choosefruit"] = getgenv().choosefruit
  4636. if getgenv().Save["AutoSave"] then
  4637. SaveSetting()
  4638. end
  4639. end)
  4640.  
  4641. page2:Slider("Time Spam Fruit", false , true , 0 , 10 , tonumber(getgenv().Save["timespam"]),tonumber(getgenv().Save["timespam"]),false, function(t)
  4642. getgenv().Save["timespam"] = t
  4643. if getgenv().Save["AutoSave"] then
  4644. SaveSetting()
  4645. end
  4646. end)
  4647.  
  4648. page2:Toggle("Farm skill",getgenv().Save["farmskill"], function(cc)
  4649. getgenv().Save["farmskill"] = cc
  4650. if getgenv().Save["AutoSave"] then
  4651. SaveSetting()
  4652. end
  4653. end)
  4654.  
  4655. page2:Toggle("TP Mob", getgenv().Save["FruitFarm"] , function(t)
  4656. getgenv().Save["FruitFarm"] = t
  4657. if getgenv().Save["AutoSave"] then
  4658. SaveSetting()
  4659. end
  4660. end)
  4661.  
  4662. if getgenv().Save["Choosefruit"] == nil then
  4663. getgenv().Save["Choosefruit"] = ""
  4664. end
  4665.  
  4666. page4:Label("Main Farm Compass")
  4667.  
  4668. page4:Toggle("Bring Compass", getgenv().Save["bringcp"], function(t)
  4669. getgenv().Save["bringcp"] = t
  4670. if getgenv().Save["AutoSave"] then
  4671. SaveSetting()
  4672. end
  4673. end)
  4674.  
  4675. page4:Toggle("Accept Compass", getgenv().Save["acccp"], function(t)
  4676. getgenv().Save["acccp"] = t
  4677. if getgenv().Save["AutoSave"] then
  4678. SaveSetting()
  4679. end
  4680. end)
  4681.  
  4682. page4:Toggle("Auto Store(1-4)", getgenv().Save["autostore"], function(t)
  4683. getgenv().Save["autostore"] = t
  4684. if getgenv().Save["AutoSave"] then
  4685. SaveSetting()
  4686. end
  4687. end)
  4688.  
  4689. page4:Toggle("Auto Find Sam", getgenv().Save["findsam"], function(t)
  4690. getgenv().Save["findsam"] = t
  4691. if getgenv().Save["AutoSave"] then
  4692. SaveSetting()
  4693. end
  4694. end)
  4695.  
  4696. page4:Toggle("Auto Open Box", getgenv().Save["Openbox"], function(t)
  4697. getgenv().Save["Openbox"] = t
  4698. if getgenv().Save["AutoSave"] then
  4699. SaveSetting()
  4700. end
  4701. end)
  4702.  
  4703. page1:Toggle("FastAttack",getgenv().Save["FastAttack"],function(x)
  4704. getgenv().Save["FastAttack"] = x
  4705. if ( not plr.Character:FindFirstChild("Yoru")) then
  4706. create:Notifile("Notification", "U need Equip Yoru", 5)
  4707. getgenv().Save["FastAttack"] = false
  4708. end
  4709. if getgenv().Save["AutoSave"] then
  4710. SaveSetting()
  4711. end
  4712. end)
  4713.  
  4714. page1:Toggle("Auto FixSpam",getgenv().Save["FixSpam"],function(x)
  4715. getgenv().Save["FixSpam"] = x
  4716. if getgenv().Save["AutoSave"] then
  4717. SaveSetting()
  4718. end
  4719. create:Notifile("Nothing Hub", "Set Skill Fruit U want Spam (C button)", 5)
  4720. end)
  4721.  
  4722. page1:Toggle("NoClip",getgenv().Save["Noclip"],function(x)
  4723. getgenv().Save["Noclip"] = x
  4724. if getgenv().Save["AutoSave"] then
  4725. SaveSetting()
  4726. end
  4727. end)
  4728.  
  4729. getgenv().weaponlist = {}
  4730. for i, v in pairs(plr.Backpack:GetChildren()) do
  4731. if v:IsA("Tool") then
  4732. table.insert(getgenv().weaponlist, v.Name)
  4733. end
  4734. end
  4735. for i, v in pairs(plr.Character:GetChildren()) do
  4736. if v:IsA("Tool") then
  4737. table.insert(getgenv().weaponlist, v.Name)
  4738. end
  4739. end
  4740.  
  4741.  
  4742. getgenv().tool = ""
  4743. page1:Label("Change Dmg Skill")
  4744. page1:Toggle("Auto 100% skill",getgenv().Save["Autoskillvip"],function(x)
  4745. getgenv().Save["Autoskillvip"] = x
  4746. if getgenv().Save["AutoSave"] then
  4747. SaveSetting()
  4748. end
  4749. end)
  4750. page1:Toggle("Auto 500% skill",getgenv().Save["Autoskillvip2"],function(x)
  4751. getgenv().Save["Autoskillvip2"] = x
  4752. if getgenv().Save["AutoSave"] then
  4753. SaveSetting()
  4754. end
  4755. end)
  4756. page1:Toggle("Auto 1k% skill",getgenv().Save["Autoskillvip3"],function(x)
  4757. getgenv().Save["Autoskillvip3"] = x
  4758. if getgenv().Save["AutoSave"] then
  4759. SaveSetting()
  4760. end
  4761. end)
  4762. page1:Toggle("Auto 5k% skill",getgenv().Save["Autoskillvip4"],function(x)
  4763. getgenv().Save["Autoskillvip4"] = x
  4764. if getgenv().Save["AutoSave"] then
  4765. SaveSetting()
  4766. end
  4767. end)
  4768. --[[page1:Toggle("Auto 100k% skill",getgenv().Save["Autoskillvip5"],function(x)
  4769. getgenv().Save["Autoskillvip5"] = x
  4770. if getgenv().Save["AutoSave"] then
  4771. SaveSetting()
  4772. end
  4773. end)
  4774. page1:Toggle("Auto 1M% skill",getgenv().Save["Autoskillvip6"],function(x)
  4775. getgenv().Save["Autoskillvip6"] = x
  4776. if getgenv().Save["AutoSave"] then
  4777. SaveSetting()
  4778. end
  4779. end)
  4780. page1:Toggle("Auto 10M% skill",getgenv().Save["Autoskillvip7"],function(x)
  4781. getgenv().Save["Autoskillvip7"] = x
  4782. if getgenv().Save["AutoSave"] then
  4783. SaveSetting()
  4784. end
  4785. end)
  4786. page1:Toggle("Auto 100M% skill",getgenv().Save["Autoskillvip8"],function(x)
  4787. getgenv().Save["Autoskillvip8"] = x
  4788. if getgenv().Save["AutoSave"] then
  4789. SaveSetting()
  4790. end
  4791. end)
  4792. page1:Toggle("Auto 1B% skill",getgenv().Save["Autoskillvip9"],function(x)
  4793. getgenv().Save["Autoskillvip9"] = x
  4794. if getgenv().Save["AutoSave"] then
  4795. SaveSetting()
  4796. end
  4797. end)]]--
  4798.  
  4799. page1:Label("Farm: Melee")
  4800.  
  4801. local Dropdown = page1:Drop("Select Tool",false, getgenv().weaponlist , function(a) -- Use Selected <table> to auto select multiselection dropdown
  4802. getgenv().tool = a
  4803. getgenv().Save["EQUIPTOOL"] = getgenv().tool
  4804. if getgenv().Save["AutoSave"] then
  4805. SaveSetting()
  4806. end
  4807. end)
  4808.  
  4809. page1:Toggle("Farm use melee",getgenv().Save["Farmmelee"],function(x)
  4810. getgenv().Save["Farmmelee"] = x
  4811. if getgenv().Save["AutoSave"] then
  4812. SaveSetting()
  4813. end
  4814. end)
  4815.  
  4816.  
  4817. if getgenv().Save["EQUIPTOOL"] == nil then
  4818. getgenv().Save["EQUIPTOOL"] = ""
  4819. end
  4820.  
  4821. page1:Button("Refresh", function()
  4822. Dropdown:Clear()
  4823. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4824. if v:IsA("Tool") then
  4825. Dropdown:Add(v.Name)
  4826. end
  4827. end
  4828. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4829. if v:IsA("Tool") then
  4830. Dropdown:Add(v.Name)
  4831. end
  4832. end
  4833. end)
  4834.  
  4835. getgenv().Concacsieuto = {}
  4836.  
  4837. function players()
  4838. for i,v in pairs(game.Players:GetChildren()) do
  4839. table.insert(getgenv().Concacsieuto, v.Name)
  4840. end
  4841. end
  4842.  
  4843. players()
  4844.  
  4845. local concac = page7:Drop("Select Players" ,false, getgenv().Concacsieuto, function(t)
  4846. getgenv().bobo = t
  4847. getgenv().Save["playerfarmbounty"] = getgenv().bobo
  4848. if getgenv().Save["AutoSave"] then
  4849. SaveSetting()
  4850. end
  4851. end)
  4852.  
  4853.  
  4854. page7:Drop("Select Method Farm" ,false, {"Sword or no burning damage like magma, gas...", "Burning damage like magma, gas..."}, function(t)
  4855. getgenv().methodbty = t
  4856. getgenv().Save["MethodBty"] = getgenv().methodbty
  4857. if getgenv().methodbty == "Sword or no burning damage like magma, gas..." then
  4858. create:Notifile("Nothing Hub", "Sword or no burning damage like magma, gas...", 3)
  4859. elseif getgenv().methodbty == "Burning damage like magma, gas..." then
  4860. create:Notifile("Nothing Hub", "Burning damage like magma, gas...", 3)
  4861. end
  4862. if getgenv().Save["AutoSave"] then
  4863. SaveSetting()
  4864. end
  4865. end)
  4866.  
  4867. if getgenv().Save["MethodBty"] == nil then
  4868. getgenv().Save["MethodBty"] = ""
  4869. end
  4870.  
  4871. page7:Button("Refesh Players", function()
  4872. concac:Clear()
  4873.  
  4874. for i,v in pairs(game.Players:GetChildren()) do
  4875. concac:Add(v.Name)
  4876. end
  4877. end)
  4878.  
  4879. if getgenv().Save["playerfarmbounty"] == nil then
  4880. getgenv().Save["playerfarmbounty"] = ""
  4881. end
  4882.  
  4883. page7:Toggle("auto spawn", getgenv().Save["spawn"], function(t)
  4884. getgenv().Save["spawn"] = t
  4885. if getgenv().Save["AutoSave"] then
  4886. SaveSetting()
  4887. end
  4888. end)
  4889.  
  4890. page7:Toggle("Fix bug auto spawn", getgenv().Save["fixbugspawn"], function(t)
  4891. getgenv().Save["fixbugspawn"] = t
  4892. if getgenv().Save["AutoSave"] then
  4893. SaveSetting()
  4894. end
  4895. end)
  4896.  
  4897.  
  4898. spawn(function()
  4899. pcall(function()
  4900. while true do wait(2)
  4901. pcall(function()
  4902. if getgenv().Save["spawn"] then
  4903. pcall(function()
  4904. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.HealthBar.Frame:GetChildren()) do
  4905. if v.Name == "Label" then
  4906. if v.Text ~= "" and (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  4907. else
  4908. wait(1)
  4909. function click(a)
  4910. game:GetService("VirtualInputManager"):SendMouseButtonEvent(a.AbsolutePosition.X+a.AbsoluteSize.X/2,a.AbsolutePosition.Y+50,0,true,a,1)
  4911. game:GetService("VirtualInputManager"):SendMouseButtonEvent(a.AbsolutePosition.X+a.AbsoluteSize.X/2,a.AbsolutePosition.Y+50,0,false,a,1)
  4912. end
  4913. click(game:GetService("Players").LocalPlayer.PlayerGui.Load.Frame:WaitForChild("Load"))
  4914. end
  4915. end
  4916. end
  4917. end)
  4918. end
  4919. end)
  4920. end
  4921. end)
  4922. end)
  4923. spawn(function()
  4924. pcall(function()
  4925. while true do wait()
  4926. if getgenv().Save["rayleigh"] then
  4927. pcall(function()
  4928. for i,v in pairs(game:GetService("Workspace").Merchants:GetChildren()) do
  4929. if v.Name == "QuestHakiMerchant" then
  4930. fireclickdetector(v.Clickable.ClickDetector)
  4931. end
  4932. end
  4933. workspace.Merchants.QuestHakiMerchant.Clickable.Retum:FireServer()
  4934. game:GetService("Players").LocalPlayer.Character.Mark3:FireServer()
  4935. game:GetService("Players").LocalPlayer.Character.Mark3:FireServer()
  4936. game:GetService("Players").LocalPlayer.Character.Mark3:FireServer()
  4937. end)
  4938. end
  4939. end
  4940. end)
  4941. end)
  4942. spawn(function()
  4943. pcall(function()
  4944. pcall(function()
  4945. while true do wait()
  4946. pcall(function()
  4947. if getgenv().Save["quest"] then
  4948. pcall(function()
  4949. workspace.Merchants.ExpertiseMerchant.Clickable.Retum:FireServer()
  4950. wait(5)
  4951. end)
  4952. end
  4953. end)
  4954. end
  4955. end)
  4956. end)
  4957. end)
  4958. spawn(function()
  4959. pcall(function()
  4960. pcall(function()
  4961. while true do wait()
  4962. pcall(function()
  4963. if getgenv().Save["fish"] then
  4964. pcall(function()
  4965. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4966. if string.find(v.Name , "Rod") then
  4967. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4968. if string.find(v.Name , "Rod") then
  4969. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4970. end
  4971. end
  4972. end
  4973. end
  4974. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4975. if string.find(v.Name , "Rod") then
  4976. for _,x in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  4977. if string.find(x.Name , "Rod") then
  4978. for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  4979. if v:FindFirstChild("Bobber") then
  4980. if v.Bobber.Effect.Enabled == true then
  4981.  
  4982. wait(0.5)
  4983. local args = {
  4984. [1] = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  4985. }
  4986. game:GetService("Players").LocalPlayer.Character:FindFirstChild(x.Name).Click:FireServer(unpack(args))
  4987. end
  4988. elseif v.Name == "Cast" and not v:FindFirstChild("Bobber") then
  4989.  
  4990. wait(0.5)
  4991. local args = {
  4992. [1] = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  4993. }
  4994. game:GetService("Players").LocalPlayer.Character:FindFirstChild(x.Name).Click:FireServer(unpack(args))
  4995. end
  4996. end
  4997. end
  4998. end
  4999. wait(0.5)
  5000. end
  5001. end
  5002. end)
  5003. end
  5004. end)
  5005. end
  5006. end)
  5007. end)
  5008. end)
  5009. function haki1()
  5010. for i = 1,5 do
  5011. local Players = game:GetService("Players")
  5012. local cache = {}
  5013. function lol(name)
  5014. if cache[name] then return cache[name] end
  5015. local player = Players:FindFirstChild(name)
  5016. if player then
  5017. cache[name] = player.UserId
  5018. return player.UserId
  5019. end
  5020.  
  5021. local id
  5022. pcall(function ()
  5023. id = Players:lol(name)
  5024. end)
  5025. cache[name] = id
  5026. return id
  5027. end
  5028. local ehh = game.Players.LocalPlayer.Name
  5029. local Final = lol(ehh)
  5030. _G.swim = true
  5031.  
  5032. while _G.swim do
  5033. wait(0) do
  5034. local args = {
  5035. [1] = "On",
  5036. [2] = 1
  5037. }
  5038. game.Workspace.UserData["User_"..Final].III:FireServer(unpack(args))
  5039. end
  5040. end
  5041. end
  5042. end
  5043. function haki2()
  5044. for i = 1,5 do
  5045. local Players = game:GetService("Players")
  5046. local cache = {}
  5047. function lol(name)
  5048. if cache[name] then return cache[name] end
  5049. local player = Players:FindFirstChild(name)
  5050. if player then
  5051. cache[name] = player.UserId
  5052. return player.UserId
  5053. end
  5054.  
  5055. local id
  5056. pcall(function ()
  5057. id = Players:lol(name)
  5058. end)
  5059. cache[name] = id
  5060. return id
  5061. end
  5062. local ehh = game.Players.LocalPlayer.Name
  5063. local Final = lol(ehh)
  5064. _G.swim = true
  5065.  
  5066. while _G.swim do
  5067. wait(0) do
  5068. local args = {
  5069. [1] = "Off",
  5070. [2] = 1
  5071. }
  5072. game.Workspace.UserData["User_"..Final].III:FireServer(unpack(args))
  5073. end
  5074. end
  5075. end
  5076.  
  5077. end
  5078. spawn(function()
  5079. pcall(function()
  5080. while true do wait()
  5081. pcall(function()
  5082. if getgenv().Save["Mod"] then
  5083. pcall(function()
  5084. local Players = game:GetService("Players")
  5085. local BlacklistedPlayers = {
  5086. "Oblivic",
  5087. "bowtiedpony",
  5088. "bige0n",
  5089. "Farquanetta",
  5090. "icydragonwingsis"
  5091. }
  5092.  
  5093. for _, v in pairs(Players:GetPlayers()) do
  5094. if table.find(BlacklistedPlayers, v.Name) then
  5095. Players.LocalPlayer:Kick("Staff OPL Has Join Server , Dont Worry. You Got Protect By NeonHub")
  5096. end
  5097. end
  5098.  
  5099. Players.PlayerAdded:Connect(function(v)
  5100. if table.find(BlacklistedPlayers, v.Name) then
  5101. Players.LocalPlayer:Kick("Staff OPL Has Join Server , Dont Worry. You Got Protect By NeonHub")
  5102. end
  5103. end)
  5104.  
  5105. end)
  5106. end
  5107. end)
  5108. end
  5109. end)
  5110. end)
  5111. spawn(function()
  5112. pcall(function()
  5113. while true do wait()
  5114. pcall(function()
  5115. if getgenv().Save["rejoin"] then
  5116. pcall(function()
  5117. local prompt = assert(game:GetService("CoreGui"):FindFirstChild("promptOverlay", true), "Rejoin Now")
  5118. assert(not prompt:FindFirstChild("ErrorPrompt"), prompt:FindFirstChild("ErrorPrompt") and wait(2) and game:GetService("TeleportService"):Teleport(game.PlaceId, game:GetService("Players").LocalPlayer))
  5119. prompt.ChildAdded:Connect(function(child)
  5120. assert(child, typeof(child) == "Instance" and child.Name == "ErrorPrompt" and child.ClassName == "Frame" and wait(2) and game:GetService("TeleportService"):Teleport(game.PlaceId, game:GetService("Players").LocalPlayer))
  5121. end)
  5122. end)
  5123. end
  5124. end)
  5125. end
  5126. end)
  5127. end)
  5128. spawn(function()
  5129. pcall(function()
  5130. while true do wait()
  5131. pcall(function()
  5132. if getgenv().Save["fixbugspawn"] then
  5133. pcall(function()
  5134. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude < 1000 then
  5135. wait(10)
  5136. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude < 1000 then
  5137. wait(5)
  5138. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  5139. end
  5140. end
  5141. end)
  5142. end
  5143. end)
  5144. end
  5145. end)
  5146. end)
  5147. spawn(function()
  5148. pcall(function()
  5149. while true do wait(.1)
  5150. pcall(function()
  5151. if getgenv().Save["tptodie"] then
  5152. pcall(function()
  5153. for i,v in pairs(game.Players:GetChildren()) do
  5154. if v.Name == getgenv().Save["playerfarmbounty"] and v.Character.Humanoid.Health > 0 then
  5155. if (plr.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  5156. wait(5)
  5157. repeat wait()
  5158. plr.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-1)
  5159. until v.Character.Humanoid.Health < 0 or plr.Character.Humanoid.Health < 0 or not getgenv().Save["tptodie"]
  5160. end
  5161. end
  5162. end
  5163. end)
  5164. end
  5165. end)
  5166. end
  5167. end)
  5168. end)
  5169. spawn(function()
  5170. pcall(function()
  5171. while true do wait(0.1)
  5172. pcall(function()
  5173. if getgenv().Save["tptospawn"] then
  5174. pcall(function()
  5175. if getgenv().Save["tptospawn"] then
  5176. pcall(function()
  5177. if (plr.Character.HumanoidRootPart.Position - StringToCFrame(getgenv().Save["posFarm"]).Position).Magnitude > 5 then
  5178. print("AAAAA")
  5179. repeat wait()
  5180. plr.Character.HumanoidRootPart.CFrame = StringToCFrame(getgenv().Save["posFarm"])
  5181. until not getgenv().Save["tptospawn"] or plr.Humanoid.Health <= 0
  5182. end
  5183. end)
  5184. end
  5185. end)
  5186. end
  5187. end)
  5188. end
  5189. end)
  5190. end)
  5191. spawn(function()
  5192. pcall(function()
  5193. while true do wait(0.1)
  5194. pcall(function()
  5195. if getgenv().Save["BringFruit"] then
  5196. pcall(function()
  5197. if getgenv().Save["BringFruit"] then
  5198. for i,v in pairs(game.Workspace.Trees.Tree.Model:GetChildren()) do
  5199. if v.ClassName == "Tool" then
  5200. print("aaaa")
  5201. fireclickdetector(v.Main.ClickDetector)
  5202. end
  5203. end
  5204. end
  5205. end)
  5206. end
  5207. end)
  5208. end
  5209. end)
  5210. end)
  5211.  
  5212. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(v)
  5213. if getgenv().Save["WebHookTF"] and (string.find(v.Name, "Quake") or string.find(v.Name, "Phoenix") or string.find(v.Name, "Dark") or string.find(v.Name, "Vampire") or string.find(v.Name, "Gravity") or string.find(v.Name, "Ope") or string.find(v.Name, "Venom") or string.find(v.Name, "Candy Fruit") or string.find(v.Name, "Hollow")or string.find(v.Name, "Chilly")or string.find(v.Name, "Gas")or string.find(v.Name, "Flare")or string.find(v.Name, "Light")or string.find(v.Name, "Smoke")or string.find(v.Name, "Rumble")or string.find(v.Name, "Sand")or string.find(v.Name, "Magma")or string.find(v.Name, "Snow")) then
  5214. pcall(function()
  5215. local url = getgenv().Save["WebHookText"]
  5216. local data = {
  5217. ["content"] = "@everyone Fruit Here",
  5218. ["embeds"] = {
  5219. {
  5220. ["title"] = "Neon V2",
  5221. ["description"] = "Username: " .."||".. game.Players.LocalPlayer.Name.. "||".. "\nFruit: " .. v.Name .."\n"..v.ToolTip.. "\nStop Hop Sever",
  5222. ["type"] = "rich",
  5223. ["color"] = tonumber(0xff8200),
  5224. }
  5225. }
  5226. }
  5227. local newdata = game:GetService("HttpService"):JSONEncode(data)
  5228.  
  5229. local headers = {
  5230. ["content-type"] = "application/json"
  5231. }
  5232. request = http_request or request or HttpPost or syn.request
  5233. local abcdef = {Url = url, Body = newdata, Method = "POST", Headers = headers}
  5234. request(abcdef)
  5235. end)
  5236. elseif getgenv().Save["WebHookTF"] and string.find(v.Name, "Fruit") and not string.find(v.Name, "Quake") and not string.find(v.Name, "Phoenix") and not string.find(v.Name, "Dark") and not string.find(v.Name, "Vampire") and not string.find(v.Name, "Gravity") and not string.find(v.Name, "Ope") and not string.find(v.Name, "Venom") and not string.find(v.Name, "Candy Fruit") and not string.find(v.Name, "Hollow")and not string.find(v.Name, "Chilly")and not string.find(v.Name, "Gas")and not string.find(v.Name, "Flare")and not string.find(v.Name, "Light")and not string.find(v.Name, "Smoke")and not string.find(v.Name, "Rumble")and not string.find(v.Name, "Sand")and not string.find(v.Name, "Magma")and not string.find(v.Name, "Snow") then
  5237. create:Notifile("Neon V2", "Nothing", 5)
  5238. local url = getgenv().Save["WebHookText"]
  5239. local data = {
  5240. ["content"] = "Fruit Trash",
  5241. ["embeds"] = {
  5242. {
  5243. ["title"] = "Neon V2",
  5244. ["description"] = "Username: " .."||".. game.Players.LocalPlayer.Name.. "||".. "\nFruit: " .. v.Name .."\n"..v.ToolTip.."\nHop Sever Now",
  5245. ["type"] = "rich",
  5246. ["color"] = tonumber(0xff8200),
  5247. }
  5248. }
  5249. }
  5250. local newdata = game:GetService("HttpService"):JSONEncode(data)
  5251.  
  5252. local headers = {
  5253. ["content-type"] = "application/json"
  5254. }
  5255. request = http_request or request or HttpPost or syn.request
  5256. local abcdef = {Url = url, Body = newdata, Method = "POST", Headers = headers}
  5257. request(abcdef)
  5258. end
  5259. end)
  5260.  
  5261. spawn(function()
  5262. pcall(function()
  5263. while true do wait(0.1)
  5264. pcall(function()
  5265. if getgenv().Save["Hopseverf"] then
  5266. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  5267. pcall(function()
  5268. print("Worrrrrr")
  5269. wait(5)
  5270. if not string.find(v.Name, "Plasma") and not string.find(v.Name, "Quake") and not string.find(v.Name, "Phoenix") and not string.find(v.Name, "Dark") and not string.find(v.Name, "Vampire") and not string.find(v.Name, "Gravity") and not string.find(v.Name, "Ope") and not string.find(v.Name, "Venom") and not string.find(v.Name, "Candy Fruit") and not string.find(v.Name, "Hollow")and not string.find(v.Name, "Chilly")and not string.find(v.Name, "Gas")and not string.find(v.Name, "Flare")and not string.find(v.Name, "Light")and not string.find(v.Name, "Smoke")and not string.find(v.Name, "Rumble")and not string.find(v.Name, "Sand")and not string.find(v.Name, "Magma")and not string.find(v.Name, "Snow") then
  5271. print("sdfesdf")
  5272. wait(10)
  5273. if game.PlaceId == 3237168 and not string.find(v.Name, "Plasma") and not string.find(v.Name, "Quake") and not string.find(v.Name, "Phoenix") and not string.find(v.Name, "Dark") and not string.find(v.Name, "Vampire") and not string.find(v.Name, "Gravity") and not string.find(v.Name, "Ope") and not string.find(v.Name, "Venom") and not string.find(v.Name, "Candy Fruit") and not string.find(v.Name, "Hollow")and not string.find(v.Name, "Chilly")and not string.find(v.Name, "Gas")and not string.find(v.Name, "Flare")and not string.find(v.Name, "Light")and not string.find(v.Name, "Smoke")and not string.find(v.Name, "Rumble")and not string.find(v.Name, "Sand")and not string.find(v.Name, "Magma")and not string.find(v.Name, "Snow") then
  5274. create:Notifile("Neon v2", "Hop Now", 5)
  5275. print("hopnow")
  5276. local PlaceID = game.PlaceId
  5277. local AllIDs = {}
  5278. local foundAnything = ""
  5279. local actualHour = os.date("!*t").hour
  5280. local Deleted = false
  5281. local File = pcall(function()
  5282. AllIDs = game:GetService('HttpService'):JSONDecode(readfile("NotSameServers.json"))
  5283. end)
  5284. if not File then
  5285. table.insert(AllIDs, actualHour)
  5286. writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  5287. end
  5288. function TPReturner()
  5289. local Site;
  5290. if foundAnything == "" then
  5291. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  5292. else
  5293. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  5294. end
  5295. local ID = ""
  5296. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  5297. foundAnything = Site.nextPageCursor
  5298. end
  5299. local num = 0;
  5300. for i,v in pairs(Site.data) do
  5301. local Possible = true
  5302. ID = tostring(v.id)
  5303. if tonumber(v.maxPlayers) > tonumber(v.playing) then
  5304. for _,Existing in pairs(AllIDs) do
  5305. if num ~= 0 then
  5306. if ID == tostring(Existing) then
  5307. Possible = false
  5308. end
  5309. else
  5310. if tonumber(actualHour) ~= tonumber(Existing) then
  5311. local delFile = pcall(function()
  5312. delfile("NotSameServers.json")
  5313. AllIDs = {}
  5314. table.insert(AllIDs, actualHour)
  5315. end)
  5316. end
  5317. end
  5318. num = num + 1
  5319. end
  5320. if Possible == true then
  5321. table.insert(AllIDs, ID)
  5322. wait()
  5323. pcall(function()
  5324. writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  5325. wait()
  5326. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  5327. end)
  5328. wait(4)
  5329. end
  5330. end
  5331. end
  5332. end
  5333.  
  5334. function Teleport()
  5335. while wait() do
  5336. pcall(function()
  5337. TPReturner()
  5338. if foundAnything ~= "" then
  5339. TPReturner()
  5340. end
  5341. end)
  5342. end
  5343. end
  5344.  
  5345.  
  5346. Teleport()
  5347. end
  5348. end
  5349. end)
  5350. end
  5351. end
  5352. end)
  5353. end
  5354. end)
  5355. end)
  5356. function drink()
  5357. local buydrink = getgenv().drink
  5358. local amountdrinkbuy = getgenv().amountdrink
  5359. if buydrink == "Cider+" then
  5360. for i = 1,amountdrink do
  5361. local args = {
  5362. [1] = "Cider+"
  5363. }
  5364.  
  5365. workspace.Merchants.BetterDrinkMerchant.Clickable.Retum:FireServer(unpack(args))
  5366. end
  5367. elseif buydrink == "Lemonade+" then
  5368.  
  5369. for i = 1,amountdrink do
  5370. local args = {
  5371. [1] = "Lemonade+"
  5372. }
  5373.  
  5374. workspace.Merchants.BetterDrinkMerchant.Clickable.Retum:FireServer(unpack(args))
  5375. end
  5376. elseif buydrink == "Juice+" then
  5377. for i = 1,amountdrink do
  5378. local args = {
  5379. [1] = "Juice+"
  5380. }
  5381.  
  5382. workspace.Merchants.BetterDrinkMerchant.Clickable.Retum:FireServer(unpack(args))
  5383. end
  5384. elseif buydrink == "Smoothie+" then
  5385. for i = 1,amountdrink do
  5386.  
  5387. local args = {
  5388. [1] = "Smoothie+"
  5389. }
  5390.  
  5391. workspace.Merchants.BetterDrinkMerchant.Clickable.Retum:FireServer(unpack(args))
  5392. end
  5393.  
  5394.  
  5395. elseif buydrink == "Cider" then
  5396. for i = 1,amountdrink do
  5397. local args = {
  5398. [1] = "Cider"
  5399. }
  5400.  
  5401. workspace.Merchants.DrinkMerchant.Clickable.Retum:FireServer(unpack(args))
  5402. end
  5403. elseif buydrink == "Lemonade" then
  5404. for i = 1,amountdrink do
  5405.  
  5406. local args = {
  5407. [1] = "Lemonade"
  5408. }
  5409.  
  5410. workspace.Merchants.DrinkMerchant.Clickable.Retum:FireServer(unpack(args))
  5411. end
  5412. elseif buydrink == "Juice" then
  5413. for i = 1,amountdrink do
  5414. local args = {
  5415. [1] = "Juice"
  5416. }
  5417.  
  5418. workspace.Merchants.DrinkMerchant.Clickable.Retum:FireServer(unpack(args))
  5419. end
  5420. elseif buydrink == "Smoothie" then
  5421. for i = 1,amountdrink do
  5422.  
  5423. local args = {
  5424. [1] = "Smoothie"
  5425. }
  5426.  
  5427. workspace.Merchants.DrinkMerchant.Clickable.Retum:FireServer(unpack(args))
  5428. end
  5429. end
  5430. end
  5431. function instdrink()
  5432. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  5433. if v:IsA("Tool") and string.find(v.Name, "Juice") or string.find(v.Name, "Milk") or string.find(v.Name, "Cider") or string.find(v.Name, "Lemonade") or string.find(v.Name, "Smoothie") or string.find(v.Name, "Golden") then
  5434. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  5435. game:GetService'VirtualUser':CaptureController()
  5436. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  5437. end
  5438. end
  5439. end
  5440. spawn(function()
  5441. pcall(function()
  5442. while true do wait(0.1)
  5443. pcall(function()
  5444. if getgenv().Save["Farmmelee"] then
  5445. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  5446. if v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health ~= 0 and v:IsA("Model") then
  5447. pcall(function()
  5448. repeat wait()
  5449. if getgenv().Save["Farmmelee"] then
  5450. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 99999999999)
  5451. if plr.Backpack:FindFirstChild(getgenv().Save["EQUIPTOOL"]) then
  5452. plr.Character.Humanoid:EquipTool(plr.Backpack[getgenv().Save["EQUIPTOOL"]])
  5453. end
  5454. ATTACK()
  5455. v.HumanoidRootPart.CanCollide = false
  5456. v.HumanoidRootPart.Size = Vector3.new(10,10,10)
  5457. plr.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,2,2)
  5458. end
  5459. until not getgenv().Save["Farmmelee"] or v.Humanoid.Health <= 0
  5460. end)
  5461. end
  5462. end
  5463. end
  5464. end)
  5465. end
  5466. end)
  5467. end)
  5468.  
  5469. spawn(function()
  5470. pcall(function()
  5471. while true do wait(0.1)
  5472. pcall(function()
  5473. if getgenv().Save["Hopseverp"] then
  5474. for x,y in pairs(game:GetService("Players"):GetChildren()) do
  5475. for i,v in pairs(y.Backpack:GetChildren()) do
  5476. print("Worrrrrr")
  5477. pcall(function()
  5478. wait(5)
  5479. if getgenv().Save["Hopseverp"] and not v:IsA("Tool") and not string.find(v.Name, "Quake") and not string.find(v.Name, "Phoenix") and not string.find(v.Name, "Dark") and not string.find(v.Name, "Vampire") and not string.find(v.Name, "Gravity") and not string.find(v.Name, "Ope") and not string.find(v.Name, "Venom") and not string.find(v.Name, "Candy Fruit") and not string.find(v.Name, "Hollow")and not string.find(v.Name, "Chilly")and not string.find(v.Name, "Gas")and not string.find(v.Name, "Flare")and not string.find(v.Name, "Light")and not string.find(v.Name, "Smoke")and not string.find(v.Name, "Rumble")and not string.find(v.Name, "Sand")and not string.find(v.Name, "Magma")and not string.find(v.Name, "Snow")and not string.find(v.Name, "Plasma") then
  5480. print("sdfesdfesdf")
  5481. wait(10)
  5482. if getgenv().Save["Hopseverp"] and game.PlaceId == 3237168 and not v:IsA("Tool") and not string.find(v.Name, "Quake") and not string.find(v.Name, "Phoenix") and not string.find(v.Name, "Dark") and not string.find(v.Name, "Vampire") and not string.find(v.Name, "Gravity") and not string.find(v.Name, "Ope") and not string.find(v.Name, "Venom") and not string.find(v.Name, "Candy Fruit") and not string.find(v.Name, "Hollow")and not string.find(v.Name, "Chilly")and not string.find(v.Name, "Gas")and not string.find(v.Name, "Flare")and not string.find(v.Name, "Light")and not string.find(v.Name, "Smoke")and not string.find(v.Name, "Rumble")and not string.find(v.Name, "Sand")and not string.find(v.Name, "Magma")and not string.find(v.Name, "Snow")and not string.find(v.Name, "Plasma") then
  5483. print("Niceeeeeeee")
  5484. create:Notifile("Neon V2", "Hop Now", 5)
  5485. local PlaceID = game.PlaceId
  5486. local AllIDs = {}
  5487. local foundAnything = ""
  5488. local actualHour = os.date("!*t").hour
  5489. local Deleted = false
  5490. local File = pcall(function()
  5491. AllIDs = game:GetService('HttpService'):JSONDecode(readfile("NotSameServers.json"))
  5492. end)
  5493. if not File then
  5494. table.insert(AllIDs, actualHour)
  5495. writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  5496. end
  5497. function TPReturner()
  5498. local Site;
  5499. if foundAnything == "" then
  5500. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  5501. else
  5502. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  5503. end
  5504. local ID = ""
  5505. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  5506. foundAnything = Site.nextPageCursor
  5507. end
  5508. local num = 0;
  5509. for i,v in pairs(Site.data) do
  5510. local Possible = true
  5511. ID = tostring(v.id)
  5512. if tonumber(v.maxPlayers) > tonumber(v.playing) then
  5513. for _,Existing in pairs(AllIDs) do
  5514. if num ~= 0 then
  5515. if ID == tostring(Existing) then
  5516. Possible = false
  5517. end
  5518. else
  5519. if tonumber(actualHour) ~= tonumber(Existing) then
  5520. local delFile = pcall(function()
  5521. delfile("NotSameServers.json")
  5522. AllIDs = {}
  5523. table.insert(AllIDs, actualHour)
  5524. end)
  5525. end
  5526. end
  5527. num = num + 1
  5528. end
  5529. if Possible == true then
  5530. table.insert(AllIDs, ID)
  5531. wait()
  5532. pcall(function()
  5533. writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  5534. wait()
  5535. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  5536. end)
  5537. wait(4)
  5538. end
  5539. end
  5540. end
  5541. end
  5542.  
  5543. function Teleport()
  5544. while wait() do
  5545. pcall(function()
  5546. TPReturner()
  5547. if foundAnything ~= "" then
  5548. TPReturner()
  5549. end
  5550. end)
  5551. end
  5552. end
  5553.  
  5554.  
  5555. Teleport()
  5556. end
  5557. end
  5558. end)
  5559. end
  5560. end
  5561. end
  5562. end)
  5563. end
  5564. end)
  5565. end)
  5566.  
  5567.  
  5568. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  5569. v.Backpack.ChildAdded:Connect(function(y)
  5570. if getgenv().Save["Hopseverp"] and getgenv().Save["Webhookfp"] and (string.find(y.Name, "Quake") or string.find(y.Name, "Phoenix") or string.find(y.Name, "Dark") or string.find(y.Name, "Vampire") or string.find(y.Name, "Grayity") or string.find(y.Name, "Ope") or string.find(y.Name, "Venom") or string.find(y.Name, "Candy Fruit") or string.find(y.Name, "Hollow")or string.find(y.Name, "Chilly")or string.find(y.Name, "Gas")or string.find(y.Name, "Flare")or string.find(y.Name, "Light")or string.find(y.Name, "Smoke")or string.find(y.Name, "Rumble")or string.find(y.Name, "Sand")or string.find(y.Name, "Magma")or string.find(y.Name, "Snow")) then
  5571. pcall(function()
  5572. local url = getgenv().Save["WebHookText"]
  5573. local data = {
  5574. ["content"] = "@everyone",
  5575. ["embeds"] = {
  5576. {
  5577. ["title"] = "Congratulation The keeper DF has been found",
  5578. ["description"] = "Username: " .."".. y.Parent.Parent.Name .. "".. "\nFruit: " .. y.Name .."\n"..y.ToolTip.. "\nStop Hop Sever",
  5579. ["type"] = "rich",
  5580. ["color"] = tonumber(0xff8200),
  5581. }
  5582. }
  5583. }
  5584. local newdata = game:GetService("HttpService"):JSONEncode(data)
  5585.  
  5586. local headers = {
  5587. ["content-type"] = "application/json"
  5588. }
  5589. request = http_request or request or HttpPost or syn.request
  5590. local abcdef = {Url = url, Body = newdata, Method = "POST", Headers = headers}
  5591. request(abcdef)
  5592. end)
  5593. elseif y.Parent.Parent.Name ~= plr.Name and getgenv().Save["Hopseverp"] and getgenv().Save["Webhookfp"] and string.find(y.Name, "Fruit") and not string.find(y.Name, "Quake") and not string.find(y.Name, "Phoenix") and not string.find(y.Name, "Dark") and not string.find(y.Name, "Vampire") and not string.find(y.Name, "Grayity") and not string.find(y.Name, "Ope") and not string.find(y.Name, "Venom") and not string.find(y.Name, "Candy Fruit") and not string.find(y.Name, "Hollow")and not string.find(y.Name, "Chilly")and not string.find(y.Name, "Gas")and not string.find(y.Name, "Flare")and not string.find(y.Name, "Light")and not string.find(y.Name, "Smoke")and not string.find(y.Name, "Rumble")and not string.find(y.Name, "Sand")and not string.find(y.Name, "Magma")and not string.find(y.Name, "Snow") then
  5594. local url = getgenv().Save["WebHookText"]
  5595. local data = {
  5596. ["content"] = "The keeper DF has been found",
  5597. ["embeds"] = {
  5598. {
  5599. ["title"] = "Nothing",
  5600. ["description"] = "Username: " .."||".. y.Parent.Parent.Name .. "||".. "\nFruit: " .. y.Name .."\n"..y.ToolTip.."\nHop Sever Now",
  5601. ["type"] = "rich",
  5602. ["color"] = tonumber(0xff8200),
  5603. }
  5604. }
  5605. }
  5606. local newdata = game:GetService("HttpService"):JSONEncode(data)
  5607.  
  5608. local headers = {
  5609. ["content-type"] = "application/json"
  5610. }
  5611. request = http_request or request or HttpPost or syn.request
  5612. local abcdef = {Url = url, Body = newdata, Method = "POST", Headers = headers}
  5613. request(abcdef)
  5614. end
  5615. end)
  5616. end
  5617.  
  5618. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  5619. for x,y in pairs(v.Backpack:GetChildren()) do
  5620. if getgenv().Save["WebHookTF"] then
  5621. if getgenv().Save["WebHookTF"] and string.find(y.Name , "Plasma") or string.find(y.Name, "Quake") or string.find(y.Name, "Phoenix") or string.find(y.Name, "Dark") or string.find(y.Name, "Vampire") or string.find(y.Name, "Grayity") or string.find(y.Name, "Ope") or string.find(y.Name, "Venom") or string.find(y.Name, "Candy Fruit") or string.find(y.Name, "Hollow")or string.find(y.Name, "Chilly")or string.find(y.Name, "Gas")or string.find(y.Name, "Flare")or string.find(y.Name, "Light")or string.find(y.Name, "Smoke")or string.find(y.Name, "Rumble")or string.find(y.Name, "Sand")or string.find(y.Name, "Magma")or string.find(y.Name, "Snow") then
  5622. pcall(function()
  5623. local url = getgenv().Save["WebHookText"]
  5624. local data = {
  5625. ["content"] = "@everyone",
  5626. ["embeds"] = {
  5627. {
  5628. ["title"] = "Congratulation The keeper DF has been found",
  5629. ["description"] = "Username: " .."".. y.Parent.Parent.Name .. "".. "\nFruit: " .. y.Name .."\n"..y.ToolTip.. "\nStop Hop Sever",
  5630. ["type"] = "rich",
  5631. ["color"] = tonumber(0xff8200),
  5632. }
  5633. }
  5634. }
  5635. local newdata = game:GetService("HttpService"):JSONEncode(data)
  5636.  
  5637. local headers = {
  5638. ["content-type"] = "application/json"
  5639. }
  5640. request = http_request or request or HttpPost or syn.request
  5641. local abcdef = {Url = url, Body = newdata, Method = "POST", Headers = headers}
  5642. request(abcdef)
  5643. print("AA")
  5644. end)
  5645. elseif y.Parent.Parent.Name ~= plr.Name and not string.find(y.Name , "Plasma") and string.find(y.Name, "Fruit") and not string.find(y.Name, "Quake") and not string.find(y.Name, "Phoenix") and not string.find(y.Name, "Dark") and not string.find(y.Name, "Vampire") and not string.find(y.Name, "Grayity") and not string.find(y.Name, "Ope") and not string.find(y.Name, "Venom") and not string.find(y.Name, "Candy Fruit") and not string.find(y.Name, "Hollow")and not string.find(y.Name, "Chilly")and not string.find(y.Name, "Gas")and not string.find(y.Name, "Flare")and not string.find(y.Name, "Light") and not string.find(y.Name, "Smoke") and not string.find(y.Name, "Rumble") and not string.find(y.Name, "Sand") and not string.find(y.Name, "Magma") and not string.find(y.Name, "Snow") then
  5646. local url = getgenv().Save["WebHookText"]
  5647. local data = {
  5648. ["content"] = "The keeper DF has been found",
  5649. ["embeds"] = {
  5650. {
  5651. ["title"] = "Neon V2",
  5652. ["description"] = "Username: " .."||".. y.Parent.Parent.Name .. "||".. "\nFruit: " .. y.Name .."\n"..y.ToolTip.."\nHop Sever Now",
  5653. ["type"] = "rich",
  5654. ["color"] = tonumber(0xff8200),
  5655. }
  5656. }
  5657. }
  5658. local newdata = game:GetService("HttpService"):JSONEncode(data)
  5659.  
  5660. local headers = {
  5661. ["content-type"] = "application/json"
  5662. }
  5663. request = http_request or request or HttpPost or syn.request
  5664. local abcdef = {Url = url, Body = newdata, Method = "POST", Headers = headers}
  5665. request(abcdef)
  5666. print("A")
  5667. end
  5668. end
  5669. end
  5670. end
  5671.  
  5672.  
  5673. spawn(function()
  5674. pcall(function()
  5675. while true do wait(0.1)
  5676. pcall(function()
  5677. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  5678. if v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health ~= 0 then
  5679. if getgenv().Save["farmskill"] then
  5680. if v.Humanoid.Health > 0 and getgenv().Save["Choosefruit"] == "Pika" and (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).Magnitude < 100 then
  5681. wait(getgenv().Save["timespam"])
  5682. local args = {
  5683. [1] = tonumber(serializeTable(remotes)),
  5684. [2] = "LightPower8",
  5685. [3] = "StartCharging",
  5686. [4] = CFrame.new(v.HumanoidRootPart.Position),
  5687. [5] = v.HumanoidRootPart,
  5688. [6] = "Right"
  5689. }
  5690.  
  5691. game:GetService("Players").LocalPlayer.Character.Powers.Light.RemoteEvent:FireServer(unpack(args))
  5692.  
  5693.  
  5694. local args = {
  5695. [1] = tonumber(serializeTable(remotes)),
  5696. [2] = "LightPower8",
  5697. [3] = "StopCharging",
  5698. [4] = CFrame.new(v.HumanoidRootPart.Position),
  5699. [5] = v.HumanoidRootPart,
  5700. [6] = 100
  5701. }
  5702.  
  5703. game:GetService("Players").LocalPlayer.Character.Powers.Light.RemoteEvent:FireServer(unpack(args))
  5704. end
  5705. if v.Humanoid.Health > 0 and getgenv().Save["Choosefruit"] == "Vampire" and (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).Magnitude < 100 then
  5706. wait(getgenv().Save["timespam"])
  5707. local args = {
  5708. [1] = tonumber(serializeTable(remotes)),
  5709. [2] = "VampirePower11",
  5710. [3] = "StartCharging",
  5711. [4] = CFrame.new(v.HumanoidRootPart.Position),
  5712. [5] = v.HumanoidRootPart,
  5713. [6] = "Right"
  5714. }
  5715.  
  5716. game:GetService("Players").LocalPlayer.Character.Powers.Vampire.RemoteEvent:FireServer(unpack(args))
  5717.  
  5718.  
  5719.  
  5720. local args = {
  5721. [1] = tonumber(serializeTable(remotes)),
  5722. [2] = "VampirePower11",
  5723. [3] = "StopCharging",
  5724. [4] = CFrame.new(v.HumanoidRootPart.Position),
  5725. [5] = v.HumanoidRootPart,
  5726. [6] = 100
  5727. }
  5728.  
  5729. game:GetService("Players").LocalPlayer.Character.Powers.Vampire.RemoteEvent:FireServer(unpack(args))
  5730. end
  5731. if v.Humanoid.Health > 0 and getgenv().Save["Choosefruit"] == "Gravity" then
  5732. wait(getgenv().Save["timespam"])
  5733. local args = {
  5734. [1] = tonumber(serializeTable(remotes)),
  5735. [2] = "GravityPower12",
  5736. [3] = "StartCharging"
  5737. }
  5738.  
  5739. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  5740.  
  5741.  
  5742. local args = {
  5743. [1] = tonumber(serializeTable(remotes)),
  5744. [2] = "GravityPower12",
  5745. [3] = "StartCharging",
  5746. [4] = CFrame.new(v.HumanoidRootPart.Position),
  5747. [5] = v.HumanoidRootPart
  5748. }
  5749.  
  5750. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  5751.  
  5752. local args = {
  5753. [1] = tonumber(serializeTable(remotes)),
  5754. [2] = "GravityPower12",
  5755. [3] = "StopCharging",
  5756. [4] = CFrame.new(v.HumanoidRootPart.Position),
  5757. [5] = v.HumanoidRootPart,
  5758. [6] = 150
  5759. }
  5760.  
  5761. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  5762. end
  5763. if v.Humanoid.Health > 0 and getgenv().Save["Choosefruit"] == "Quake" then
  5764. wait(getgenv().Save["timespam"])
  5765. local args = {
  5766. [1] = tonumber(serializeTable(remotes)),
  5767. [2] = "QuakePower4",
  5768. [3] = "StartCharging",
  5769. [5] = "Right"
  5770. }
  5771.  
  5772. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  5773.  
  5774.  
  5775. local args = {
  5776. [1] = tonumber(serializeTable(remotes)),
  5777. [2] = "QuakePower4",
  5778. [3] = "StopCharging",
  5779. [4] = v.HumanoidRootPart,
  5780. [5] = CFrame.new(v.HumanoidRootPart.Position),
  5781. [6] = 100,
  5782. [7] = v.HumanoidRootPart.Position
  5783. }
  5784.  
  5785. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  5786. end
  5787. if v.Humanoid.Health > 0 and getgenv().Save["Choosefruit"] == "Rumble" and (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).Magnitude < 100 then
  5788. wait(getgenv().Save["timespam"])
  5789. local args = {
  5790. [1] = tonumber(serializeTable(remotes)),
  5791. [2] = "RumblePower2",
  5792. [3] = "StartCharging",
  5793. [4] = CFrame.new(v.HumanoidRootPart.CFrame.Position.x,v.HumanoidRootPart.CFrame.Position.y - 10, v.HumanoidRootPart.CFrame.Position.z),
  5794. [5] = v.HumanoidRootPart,
  5795. [6] = "Right"
  5796. }
  5797.  
  5798. game:GetService("Players").LocalPlayer.Character.Powers.Rumble.RemoteEvent:FireServer(unpack(args))
  5799.  
  5800.  
  5801.  
  5802. local args = {
  5803. [1] = tonumber(serializeTable(remotes)),
  5804. [2] = "RumblePower2",
  5805. [3] = "StopCharging",
  5806. [4] = Vector3.new(v.HumanoidRootPart.CFrame.Position.x,v.HumanoidRootPart.CFrame.Position.y - 10, v.HumanoidRootPart.CFrame.Position.z),
  5807. [5] = v.HumanoidRootPart,
  5808. [6] = 200,
  5809. [7] = Vector3.new(v.HumanoidRootPart.CFrame.Position.x,v.HumanoidRootPart.CFrame.Position.y - 10, v.HumanoidRootPart.CFrame.Position.z)
  5810. }
  5811.  
  5812. game:GetService("Players").LocalPlayer.Character.Powers.Rumble.RemoteEvent:FireServer(unpack(args))
  5813. end
  5814. if v.Humanoid.Health > 0 and getgenv().Save["Choosefruit"] == "Magma" and (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).Magnitude < 100 then
  5815. wait(getgenv().Save["timespam"])
  5816. local args = {
  5817. [1] = tonumber(serializeTable(remotes)),
  5818. [2] = "MagmaPower7",
  5819. [3] = "StartCharging",
  5820. [4] = CFrame.new(v.HumanoidRootPart.Position),
  5821. [5] = v.HumanoidRootPart,
  5822. [6] = "Right"
  5823. }
  5824.  
  5825. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  5826.  
  5827. local args = {
  5828. [1] = tonumber(serializeTable(remotes)),
  5829. [2] = "MagmaPower7",
  5830. [3] = "StopCharging",
  5831. [4] = CFrame.new(v.HumanoidRootPart.Position),
  5832. [6] = 100
  5833. }
  5834.  
  5835. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  5836.  
  5837. local args = {
  5838. [1] = tonumber(serializeTable(remotes)),
  5839. [2] = "MagmaPower7",
  5840. [3] = "StopCharging",
  5841. [4] = CFrame.new(v.HumanoidRootPart.Position),
  5842. [5] = v.HumanoidRootPart,
  5843. [6] = 100
  5844. }
  5845.  
  5846. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  5847. local args = {
  5848. [1] = tonumber(serializeTable(remotes)),
  5849. [2] = "MagmaPower7",
  5850. [3] = "StartCharging",
  5851. [4] = CFrame.new(v.HumanoidRootPart.Position),
  5852. [5] = v.HumanoidRootPart,
  5853. [6] = "Left"
  5854. }
  5855.  
  5856. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  5857. end
  5858. if v.Humanoid.MaxHealth - v.Humanoid.Health >= 5000 then
  5859. v.Humanoid.Health = 0
  5860. end
  5861. end
  5862. end
  5863. end
  5864. end)
  5865. end
  5866. end)
  5867. end)
  5868.  
  5869. spawn(function()
  5870. pcall(function()
  5871. while true do wait()
  5872. if getgenv().Save["FruitFarm"] then
  5873. pcall(function()
  5874. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  5875. if v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 and (plr.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  5876. pcall(function()
  5877. repeat wait()
  5878. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  5879. if getgenv().Save["Choosefruit"] == "Vampire" then
  5880. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,100,0)
  5881. end
  5882. if getgenv().Save["Choosefruit"] == "Gravity" then
  5883. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,-100,0)
  5884. end
  5885. if getgenv().Save["Choosefruit"] == "Rumble" then
  5886. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,-100,0)
  5887. end
  5888. if getgenv().Save["Choosefruit"] == "Magma" then
  5889. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,2,-50)
  5890. end
  5891. if getgenv().Save["Choosefruit"] == "Quake" then
  5892. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,-100,0)
  5893. end
  5894. if getgenv().Save["Choosefruit"] == "Pika" then
  5895. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,2,-20)
  5896. end
  5897. until not getgenv().Save["FruitFarm"] or v.Humanoid.Health == 0
  5898. end)
  5899. end
  5900. end
  5901. end)
  5902. end
  5903. end
  5904. end)
  5905. end)
  5906.  
  5907. spawn(function()
  5908. pcall(function()
  5909. while true do wait()
  5910. pcall(function()
  5911. if getgenv().Save["Goro"] then
  5912. local plr1 = game.Players.LocalPlayer.Character
  5913. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  5914. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  5915. local args = {
  5916. [1] = tonumber(serializeTable(remotes)),
  5917. [2] = "RumblePower2",
  5918. [3] = "StartCharging",
  5919. [4] = CFrame.new(plr2.Character.HumanoidRootPart.CFrame.Position.x,plr2.Character.HumanoidRootPart.CFrame.Position.y - 10, plr2.Character.HumanoidRootPart.CFrame.Position.z),
  5920. [5] = plr2.Character.HumanoidRootPart,
  5921. [6] = "Right"
  5922. }
  5923.  
  5924. game:GetService("Players").LocalPlayer.Character.Powers.Rumble.RemoteEvent:FireServer(unpack(args))
  5925.  
  5926. local args = {
  5927. [1] = tonumber(serializeTable(remotes)),
  5928. [2] = "RumblePower2",
  5929. [3] = "StopCharging",
  5930. [4] = Vector3.new(plr2.Character.HumanoidRootPart.CFrame.Position.x,plr2.Character.HumanoidRootPart.CFrame.Position.y - 10, plr2.Character.HumanoidRootPart.CFrame.Position.z),
  5931. [5] = plr2.Character.HumanoidRootPart,
  5932. [6] = 200,
  5933. [7] = Vector3.new(plr2.Character.HumanoidRootPart.CFrame.Position.x,plr2.Character.HumanoidRootPart.CFrame.Position.y - 10, plr2.Character.HumanoidRootPart.CFrame.Position.z)
  5934. }
  5935.  
  5936. game:GetService("Players").LocalPlayer.Character.Powers.Rumble.RemoteEvent:FireServer(unpack(args))
  5937. end
  5938. end
  5939. end)
  5940. end
  5941. end)
  5942. end)
  5943.  
  5944. spawn(function()
  5945. pcall(function()
  5946. while true do wait()
  5947. pcall(function()
  5948. if getgenv().Save["Bomb"] then
  5949. local plr1 = game.Players.LocalPlayer.Character
  5950. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  5951. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  5952. local args = {
  5953. [1] = "BombPower5",
  5954. [2] = "StartCharging",
  5955. [3] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  5956. [4] = plr2.Character.HumanoidRootPart,
  5957. [5] = "Right"
  5958. }
  5959.  
  5960. game:GetService("Players").LocalPlayer.Character.Powers.Bomb.RemoteEvent:FireServer(unpack(args))
  5961.  
  5962.  
  5963.  
  5964. local args = {
  5965. [1] = "BombPower5",
  5966. [2] = "StopCharging",
  5967. [3] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  5968. [4] = plr2.Character.HumanoidRootPart,
  5969. [5] = 100
  5970. }
  5971.  
  5972. game:GetService("Players").LocalPlayer.Character.Powers.Bomb.RemoteEvent:FireServer(unpack(args))
  5973. end
  5974. end
  5975. end)
  5976. end
  5977. end)
  5978. end)
  5979.  
  5980. spawn(function()
  5981. pcall(function()
  5982. while true do wait()
  5983. pcall(function()
  5984. if getgenv().Save["Dark"] then
  5985. local plr1 = game.Players.LocalPlayer.Character
  5986. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  5987. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  5988. local args = {
  5989. [1] = tonumber(serializeTable(remotes)),
  5990. [2] = "DarkPower10",
  5991. [3] = "StartCharging",
  5992. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  5993. [5] = plr2.Character.HumanoidRootPart,
  5994. [6] = "Left"
  5995. }
  5996.  
  5997. game:GetService("Players").LocalPlayer.Character.Powers.Dark.RemoteEvent:FireServer(unpack(args))
  5998.  
  5999.  
  6000. local args = {
  6001. [1] = tonumber(serializeTable(remotes)),
  6002. [2] = "DarkPower10",
  6003. [3] = "StopCharging",
  6004. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6005. [5] = plr2.Character.HumanoidRootPart,
  6006. [6] = 100
  6007. }
  6008.  
  6009. game:GetService("Players").LocalPlayer.Character.Powers.Dark.RemoteEvent:FireServer(unpack(args))
  6010. end
  6011. end
  6012. end)
  6013. end
  6014. end)
  6015. end)
  6016.  
  6017. spawn(function()
  6018. pcall(function()
  6019. while true do wait()
  6020. pcall(function()
  6021. if getgenv().Save["Phoenix"] then
  6022. local plr1 = game.Players.LocalPlayer.Character
  6023. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6024. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6025. local args = {
  6026. [1] = tonumber(serializeTable(remotes)),
  6027. [2] = "PhoenixPower3",
  6028. [3] = "StartCharging",
  6029. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6030. [5] = plr2.Character.HumanoidRootPart,
  6031. [6] = "Right"
  6032. }
  6033.  
  6034. game:GetService("Players").LocalPlayer.Character.Powers.Phoenix.RemoteEvent:FireServer(unpack(args))
  6035.  
  6036. local args = {
  6037. [1] = tonumber(serializeTable(remotes)),
  6038. [2] = "PhoenixPower3",
  6039. [3] = "StopCharging",
  6040. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6041. [5] = plr2.Character.HumanoidRootPart,
  6042. [6] = 100
  6043. }
  6044.  
  6045. game:GetService("Players").LocalPlayer.Character.Powers.Phoenix.RemoteEvent:FireServer(unpack(args))
  6046. end
  6047. end
  6048. end)
  6049. end
  6050. end)
  6051. end)
  6052.  
  6053. spawn(function()
  6054. pcall(function()
  6055. while true do wait()
  6056. pcall(function()
  6057. if getgenv().Save["Magma"] then
  6058. local plr1 = game.Players.LocalPlayer.Character
  6059. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6060. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6061. local args = {
  6062. [1] = tonumber(serializeTable(remotes)),
  6063. [2] = "MagmaPower9",
  6064. [3] = "Create",
  6065. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6066. [5] = workspace.Cave.Stone
  6067. }
  6068.  
  6069. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  6070.  
  6071.  
  6072. local args = {
  6073. [1] = tonumber(serializeTable(remotes)),
  6074. [2] = "MagmaPower7",
  6075. [3] = "StartCharging",
  6076. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6077. [5] = "Right"
  6078. }
  6079.  
  6080. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  6081.  
  6082.  
  6083.  
  6084. local args = {
  6085. [1] = tonumber(serializeTable(remotes)),
  6086. [2] = "MagmaPower7",
  6087. [3] = "StopCharging",
  6088. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6089. [5] = plr2.Character.HumanoidRootPart,
  6090. [6] = 100
  6091. }
  6092.  
  6093. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  6094. end
  6095. end
  6096. end)
  6097. end
  6098. end)
  6099. end)
  6100.  
  6101. spawn(function()
  6102. pcall(function()
  6103. while true do wait()
  6104. pcall(function()
  6105. if getgenv().Save["Flare"] then
  6106. local plr1 = game.Players.LocalPlayer.Character
  6107. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6108. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6109. local args = {
  6110. [1] = tonumber(serializeTable(remotes)),
  6111. [2] = "FlarePower2",
  6112. [3] = "StartCharging",
  6113. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6114. [5] = plr2.Character.HumanoidRootPart,
  6115. [6] = "Right"
  6116. }
  6117.  
  6118. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  6119.  
  6120. local args = {
  6121. [1] = tonumber(serializeTable(remotes)),
  6122. [2] = "FlarePower2",
  6123. [3] = "StopCharging",
  6124. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6125. [6] = 100
  6126. }
  6127.  
  6128. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  6129. local args = {
  6130. [1] = tonumber(serializeTable(remotes)),
  6131. [2] = "FlarePower4"
  6132. }
  6133.  
  6134. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  6135.  
  6136. local args = {
  6137. [1] = tonumber(serializeTable(remotes)),
  6138. [2] = "FlarePower5",
  6139. [3] = "StartCharging",
  6140. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6141. [5] = plr2.Character.HumanoidRootPart,
  6142. [6] = "Right"
  6143. }
  6144.  
  6145. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  6146.  
  6147. local args = {
  6148. [1] = tonumber(serializeTable(remotes)),
  6149. [2] = "FlarePower5",
  6150. [3] = "StopCharging",
  6151. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6152. [5] = plr2.Character.HumanoidRootPart,
  6153. [6] = 100
  6154. }
  6155.  
  6156. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  6157. end
  6158. end
  6159. end)
  6160. end
  6161. end)
  6162. end)
  6163.  
  6164. spawn(function()
  6165. pcall(function()
  6166. while true do wait()
  6167. pcall(function()
  6168. if getgenv().Save["Chilly"] then
  6169. local plr1 = game.Players.LocalPlayer.Character
  6170. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6171. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6172. local args = {
  6173. [1] = tonumber(serializeTable(remotes)),
  6174. [2] = "ChillyPower2",
  6175. [3] = "StartCharging",
  6176. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6177. [5] = plr2.Character.HumanoidRootPart,
  6178. [6] = "Right"
  6179. }
  6180.  
  6181. game:GetService("Players").LocalPlayer.Character.Powers.Chilly.RemoteEvent:FireServer(unpack(args))
  6182.  
  6183. local args = {
  6184. [1] = tonumber(serializeTable(remotes)),
  6185. [2] = "ChillyPower2",
  6186. [3] = "StopCharging",
  6187. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6188. [6] = 100
  6189. }
  6190.  
  6191. game:GetService("Players").LocalPlayer.Character.Powers.Chilly.RemoteEvent:FireServer(unpack(args))
  6192. local args = {
  6193. [1] = tonumber(serializeTable(remotes)),
  6194. [2] = "ChillyPower2"
  6195. }
  6196.  
  6197. game:GetService("Players").LocalPlayer.Character.Powers.Chilly.RemoteEvent:FireServer(unpack(args))
  6198.  
  6199. local args = {
  6200. [1] = tonumber(serializeTable(remotes)),
  6201. [2] = "ChillyPower2",
  6202. [3] = "StartCharging",
  6203. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6204. [5] = plr2.Character.HumanoidRootPart,
  6205. [6] = "Right"
  6206. }
  6207.  
  6208. game:GetService("Players").LocalPlayer.Character.Powers.Chilly.RemoteEvent:FireServer(unpack(args))
  6209.  
  6210. local args = {
  6211. [1] = tonumber(serializeTable(remotes)),
  6212. [2] = "ChillyPower2",
  6213. [3] = "StopCharging",
  6214. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6215. [5] = plr2.Character.HumanoidRootPart,
  6216. [6] = 100
  6217. }
  6218.  
  6219. game:GetService("Players").LocalPlayer.Character.Powers.Chilly.RemoteEvent:FireServer(unpack(args))
  6220. end
  6221. end
  6222. end)
  6223. end
  6224. end)
  6225. end)
  6226.  
  6227. spawn(function()
  6228. pcall(function()
  6229. while true do wait()
  6230. pcall(function()
  6231. if getgenv().Save["Chilly2"] then
  6232. local plr1 = game.Players.LocalPlayer.Character
  6233. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6234. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6235. local args = {
  6236. [1] = tonumber(serializeTable(remotes)),
  6237. [2] = "ChillyPower5",
  6238. [3] = "StartCharging",
  6239. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6240. [5] = plr2.Character.HumanoidRootPart,
  6241. [6] = "Right"
  6242. }
  6243.  
  6244. game:GetService("Players").LocalPlayer.Character.Powers.Chilly.RemoteEvent:FireServer(unpack(args))
  6245.  
  6246. local args = {
  6247. [1] = tonumber(serializeTable(remotes)),
  6248. [2] = "ChillyPower5",
  6249. [3] = "StopCharging",
  6250. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6251. [6] = 100
  6252. }
  6253.  
  6254. game:GetService("Players").LocalPlayer.Character.Powers.Chilly.RemoteEvent:FireServer(unpack(args))
  6255. local args = {
  6256. [1] = tonumber(serializeTable(remotes)),
  6257. [2] = "ChillyPower5"
  6258. }
  6259.  
  6260. game:GetService("Players").LocalPlayer.Character.Powers.Chilly.RemoteEvent:FireServer(unpack(args))
  6261.  
  6262. local args = {
  6263. [1] = tonumber(serializeTable(remotes)),
  6264. [2] = "ChillyPower5",
  6265. [3] = "StartCharging",
  6266. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6267. [5] = plr2.Character.HumanoidRootPart,
  6268. [6] = "Right"
  6269. }
  6270.  
  6271. game:GetService("Players").LocalPlayer.Character.Powers.Chilly.RemoteEvent:FireServer(unpack(args))
  6272.  
  6273. local args = {
  6274. [1] = tonumber(serializeTable(remotes)),
  6275. [2] = "ChillyPower5",
  6276. [3] = "StopCharging",
  6277. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6278. [5] = plr2.Character.HumanoidRootPart,
  6279. [6] = 100
  6280. }
  6281.  
  6282. game:GetService("Players").LocalPlayer.Character.Powers.Chilly.RemoteEvent:FireServer(unpack(args))
  6283. end
  6284. end
  6285. end)
  6286. end
  6287. end)
  6288. end)
  6289.  
  6290. spawn(function()
  6291. pcall(function()
  6292. while true do wait()
  6293. pcall(function()
  6294. if getgenv().Save["Pika"] then
  6295. local plr1 = game.Players.LocalPlayer.Character
  6296. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6297. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6298. local args = {
  6299. [1] = tonumber(serializeTable(remotes)),
  6300. [2] = "LightPower8",
  6301. [3] = "StartCharging",
  6302. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6303. [5] = plr2.Character.HumanoidRootPart,
  6304. [6] = "Right"
  6305. }
  6306.  
  6307. game:GetService("Players").LocalPlayer.Character.Powers.Light.RemoteEvent:FireServer(unpack(args))
  6308.  
  6309.  
  6310. local args = {
  6311. [1] = tonumber(serializeTable(remotes)),
  6312. [2] = "LightPower8",
  6313. [3] = "StopCharging",
  6314. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6315. [5] = plr2.Character.HumanoidRootPart,
  6316. [6] = 100
  6317. }
  6318.  
  6319. game:GetService("Players").LocalPlayer.Character.Powers.Light.RemoteEvent:FireServer(unpack(args))
  6320. end
  6321. end
  6322. end)
  6323. end
  6324. end)
  6325. end)
  6326.  
  6327. spawn(function()
  6328. pcall(function()
  6329. while true do wait()
  6330. pcall(function()
  6331. if getgenv().Save["gravity"] then
  6332. local plr1 = game.Players.LocalPlayer.Character
  6333. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6334. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6335. local args = {
  6336. [1] = tonumber(serializeTable(remotes)),
  6337. [2] = "GravityPower8",
  6338. [3] = "StartCharging",
  6339. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6340. [5] = plr2.Character.HumanoidRootPart
  6341. }
  6342.  
  6343. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  6344.  
  6345. local args = {
  6346. [1] = tonumber(serializeTable(remotes)),
  6347. [2] = "GravityPower8",
  6348. [3] = "StopCharging",
  6349. [4] = CFrame.new(Vector3.new(plr2.Character.HumanoidRootPart.Position)),
  6350. [5] = plr2.Character.HumanoidRootPart,
  6351. [6] = 300
  6352. }
  6353.  
  6354. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  6355. end
  6356. end
  6357. end)
  6358. end
  6359. end)
  6360. end)
  6361.  
  6362. spawn(function()
  6363. pcall(function()
  6364. while true do wait()
  6365. pcall(function()
  6366. if getgenv().Save["gravity1"] then
  6367. local plr1 = game.Players.LocalPlayer.Character
  6368. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6369. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6370. local args = {
  6371. [1] = tonumber(serializeTable(remotes)),
  6372. [2] = "GravityPower11",
  6373. [3] = "StartCharging",
  6374. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6375. [5] = plr2.Character.HumanoidRootPart
  6376. }
  6377. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  6378.  
  6379. local args = {
  6380. [1] = tonumber(serializeTable(remotes)),
  6381. [2] = "GravityPower11",
  6382. [3] = "StopCharging",
  6383. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6384. [5] = plr2.Character.HumanoidRootPart,
  6385. [6] = 150
  6386. }
  6387.  
  6388. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  6389. end
  6390. end
  6391. end)
  6392. end
  6393. end)
  6394. end)
  6395.  
  6396. spawn(function()
  6397. pcall(function()
  6398. while true do wait()
  6399. pcall(function()
  6400. if getgenv().Save["gravity2"] then
  6401. local plr1 = game.Players.LocalPlayer.Character
  6402. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6403. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6404. local args = {
  6405. [1] = tonumber(serializeTable(remotes)),
  6406. [2] = "GravityPower12",
  6407. [3] = "StartCharging"
  6408. }
  6409.  
  6410. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  6411.  
  6412.  
  6413. local args = {
  6414. [1] = tonumber(serializeTable(remotes)),
  6415. [2] = "GravityPower12",
  6416. [3] = "StartCharging",
  6417. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6418. [5] = plr2.Character.HumanoidRootPart
  6419. }
  6420.  
  6421. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  6422.  
  6423. local args = {
  6424. [1] = tonumber(serializeTable(remotes)),
  6425. [2] = "GravityPower12",
  6426. [3] = "StopCharging",
  6427. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6428. [5] = plr2.Character.HumanoidRootPart,
  6429. [6] = 150
  6430. }
  6431.  
  6432. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  6433. end
  6434. end
  6435. end)
  6436. end
  6437. end)
  6438. end)
  6439. spawn(function()
  6440. pcall(function()
  6441. while true do wait()
  6442. pcall(function()
  6443. if getgenv().Save["gravity3"] then
  6444. local plr1 = game.Players.LocalPlayer.Character
  6445. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6446. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6447. local args = {
  6448. [1] = tonumber(serializeTable(remotes)),
  6449. [2] = "GravityPower4",
  6450. [3] = "StartCharging"
  6451. }
  6452.  
  6453. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  6454.  
  6455.  
  6456. local args = {
  6457. [1] = tonumber(serializeTable(remotes)),
  6458. [2] = "GravityPower4",
  6459. [3] = "StartCharging",
  6460. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6461. [5] = plr2.Character.HumanoidRootPart
  6462. }
  6463.  
  6464. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  6465.  
  6466. local args = {
  6467. [1] = tonumber(serializeTable(remotes)),
  6468. [2] = "GravityPower4",
  6469. [3] = "StopCharging",
  6470. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6471. [5] = plr2.Character.HumanoidRootPart,
  6472. [6] = 300
  6473. }
  6474.  
  6475. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  6476.  
  6477. end
  6478. end
  6479. end)
  6480. end
  6481. end)
  6482. end)
  6483. spawn(function()
  6484. pcall(function()
  6485. while true do wait()
  6486. pcall(function()
  6487. if getgenv().Save["vampire1"] then
  6488. local plr1 = game.Players.LocalPlayer.Character
  6489. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6490. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6491. local args = {
  6492. [1] = tonumber(serializeTable(remotes)),
  6493. [2] = "VampirePower11",
  6494. [3] = "StartCharging",
  6495. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6496. [5] = plr2.Character.HumanoidRootPart,
  6497. [6] = "Right"
  6498. }
  6499.  
  6500. game:GetService("Players").LocalPlayer.Character.Powers.Vampire.RemoteEvent:FireServer(unpack(args))
  6501.  
  6502.  
  6503. local args = {
  6504. [1] = tonumber(serializeTable(remotes)),
  6505. [2] = "VampirePower11",
  6506. [3] = "StopCharging",
  6507. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6508. [5] = plr2.Character.HumanoidRootPart,
  6509. [6] = 100
  6510. }
  6511.  
  6512. game:GetService("Players").LocalPlayer.Character.Powers.Vampire.RemoteEvent:FireServer(unpack(args))
  6513. end
  6514. end
  6515. end)
  6516. end
  6517. end)
  6518. end)
  6519.  
  6520. spawn(function()
  6521. pcall(function()
  6522. while true do wait()
  6523. pcall(function()
  6524. local plr1 = game.Players.LocalPlayer.Character
  6525. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6526. if getgenv().Save["TPPLAYER"] then
  6527. if getgenv().Save["TPPLAYER"] and getgenv().Save["ChooseMet"] ~= "" then
  6528. repeat wait()
  6529. if (plr2.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6530. if getgenv().Save["ChooseMet"] == "Normal" then
  6531. plr1.HumanoidRootPart.CFrame = plr2.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,3)
  6532. end
  6533. if getgenv().Save["ChooseMet"] == "Angel" then
  6534. plr1.HumanoidRootPart.CFrame = plr2.Character.HumanoidRootPart.CFrame * CFrame.new(0,200,0)
  6535. end
  6536. if getgenv().Save["ChooseMet"] == "Under" then
  6537. plr1.HumanoidRootPart.CFrame = plr2.Character.HumanoidRootPart.CFrame * CFrame.new(0,-200,0)
  6538. end
  6539. else
  6540. for i,v in pairs(game:GetService("Workspace").ISLAND:GetChildren()) do
  6541. if v.Name == "Part" then
  6542. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame * CFrame.new(0,10,0)
  6543. end
  6544. end
  6545. end
  6546. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  6547. until not getgenv().Save["TPPLAYER"] or plr2.Humanoid.Health == 0 or plr1.Humanoid.Health == 0
  6548. else
  6549. for i,v in pairs(game:GetService("Workspace").ISLAND:GetChildren()) do
  6550. if v.Name == "Part" then
  6551. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame * CFrame.new(0,10,0)
  6552. end
  6553. end
  6554. end
  6555. end
  6556. end)
  6557. end
  6558. end)
  6559. end)
  6560.  
  6561. spawn(function()
  6562. pcall(function()
  6563. while true do wait()
  6564. if getgenv().Save["acccp"] then
  6565. workspace.Merchants.QuestMerchant.Clickable.Retum:FireServer("Claim10")
  6566. end
  6567. end
  6568. end)
  6569. end)
  6570.  
  6571. function autostore()
  6572. pcall(function()
  6573. if getgenv().autostore then
  6574. if game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.Unlock1.Visible == false and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF1.DevilFruit.Text == "Empty" then
  6575. local args = {
  6576. [1] = "StoredDF1"
  6577. }
  6578.  
  6579. game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
  6580. elseif game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.Unlock2.Visible == false and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF2.DevilFruit.Text == "Empty" then
  6581. local args = {
  6582. [1] = "StoredDF2"
  6583. }
  6584.  
  6585. game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
  6586. elseif game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.Unlock3.Visible == false and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF3.DevilFruit.Text == "Empty" then
  6587. local args = {
  6588. [1] = "StoredDF3"
  6589. }
  6590.  
  6591. game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
  6592. elseif game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.Unlock4.Visible == false and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF4.DevilFruit.Text == "Empty" then
  6593. local args = {
  6594. [1] = "StoredDF4"
  6595. }
  6596.  
  6597. game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
  6598. end
  6599. end
  6600. end)
  6601. end
  6602. function autostoremain()
  6603. pcall(function()
  6604. if getgenv().autostore then
  6605. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  6606. if v:IsA("Tool") then
  6607. if game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.Unlock4.Visible == false and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF4.DevilFruit.Text == "Empty" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.Unlock1.Visible == false and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF1.DevilFruit.Text == "Empty" or game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.Unlock2.Visible == false and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF2.DevilFruit.Text == "Empty" or game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.Unlock3.Visible == false and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF3.DevilFruit.Text == "Empty" then
  6608. if string.find(v.Name, "Quake") or string.find(v.Name, "Phoenix") or string.find(v.Name, "Dark") or string.find(v.Name, "Vampire") or string.find(v.Name, "Gravity") or string.find(v.Name, "Ope") or string.find(v.Name, "Venom") or string.find(v.Name, "Candy") or string.find(v.Name, "Hollow")or string.find(v.Name, "Chilly")or string.find(v.Name, "Gas")or string.find(v.Name, "Flare")or string.find(v.Name, "Light")or string.find(v.Name, "Smoke")or string.find(v.Name, "Rumble")or string.find(v.Name, "Sand")or string.find(v.Name, "Magma")or string.find(v.Name, "Snow") then
  6609. if game.Players.LocalPlayer.Backpack:FindFirstChild(v.Name) then
  6610. game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack[v.Name])
  6611. end
  6612. end
  6613. end
  6614. end
  6615. end
  6616. end
  6617. end)
  6618. end
  6619.  
  6620.  
  6621.  
  6622. spawn(function()
  6623. pcall(function()
  6624. while true do wait()
  6625. pcall(function()
  6626. if getgenv().Save["autostore"] then
  6627. if game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.Unlock1.Visible == false and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF1.DevilFruit.Text == "Empty" or game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.Unlock2.Visible == false and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF2.DevilFruit.Text == "Empty" or game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.Unlock3.Visible == false and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF3.DevilFruit.Text == "Empty" then
  6628. if getgenv().autostore then
  6629. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  6630. if v:IsA("Tool") then
  6631. if string.find(v.Name, "Quake") or string.find(v.Name, "Phoenix") or string.find(v.Name, "Dark") or string.find(v.Name, "Vampire") or string.find(v.Name, "Gravity") or string.find(v.Name, "Ope") or string.find(v.Name, "Venom") or string.find(v.Name, "Candy") or string.find(v.Name, "Hollow")or string.find(v.Name, "Chilly")or string.find(v.Name, "Gas")or string.find(v.Name, "Flare")or string.find(v.Name, "Light")or string.find(v.Name, "Smoke")or string.find(v.Name, "Rumble")or string.find(v.Name, "Sand")or string.find(v.Name, "Magma")or string.find(v.Name, "Snow") then
  6632. autostoremain()
  6633. end
  6634. end
  6635. end
  6636. end
  6637. if getgenv().autostore then
  6638. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  6639. if v:IsA("Tool") then
  6640. if string.find(v.Name, "Quake") or string.find(v.Name, "Phoenix") or string.find(v.Name, "Dark") or string.find(v.Name, "Vampire") or string.find(v.Name, "Gravity") or string.find(v.Name, "Ope") or string.find(v.Name, "Venom") or string.find(v.Name, "Candy") or string.find(v.Name, "Hollow")or string.find(v.Name, "Chilly")or string.find(v.Name, "Gas")or string.find(v.Name, "Flare")or string.find(v.Name, "Light")or string.find(v.Name, "Smoke")or string.find(v.Name, "Rumble")or string.find(v.Name, "Sand")or string.find(v.Name, "Magma")or string.find(v.Name, "Snow") then
  6641. autostore()
  6642. end
  6643. end
  6644. end
  6645. end
  6646. end
  6647. end
  6648. end)
  6649. end
  6650. end)
  6651. end)
  6652.  
  6653. function findsam()
  6654. pcall(function()
  6655. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  6656. if v.Name == "Compass" then
  6657. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Poser.Value)
  6658. wait(0.5)
  6659. game:GetService'VirtualUser':CaptureController()
  6660. game:GetService'VirtualUser':Button1Down(Vector2.new(0,0))
  6661. end
  6662. end
  6663. end)
  6664. end
  6665.  
  6666. function equipsam()
  6667. pcall(function()
  6668. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  6669. if v.Name == "Compass" then
  6670. if game.Players.LocalPlayer.Backpack:FindFirstChild("Compass") then
  6671. game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack["Compass"])
  6672. end
  6673. end
  6674. end
  6675. end)
  6676. end
  6677.  
  6678. spawn(function()
  6679. pcall(function()
  6680. while true do wait()
  6681. pcall(function()
  6682. if getgenv().Save["findsam"] and (plr.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  6683. if game.Players.LocalPlayer.Backpack:FindFirstChild("Compass") then
  6684. equipsam()
  6685. end
  6686. if game.Players.LocalPlayer.Character:FindFirstChild("Compass") then
  6687. wait(0.5)
  6688. findsam()
  6689. else
  6690. end
  6691. end
  6692. end)
  6693. end
  6694. end)
  6695. end)
  6696.  
  6697. function equipbox()
  6698. pcall(function()
  6699. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  6700. if string.find(v.Name, "Rare Box") or string.find(v.Name, "Ultra Rare Box") then
  6701. game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack[v.Name])
  6702. end
  6703. end
  6704. end)
  6705. end
  6706.  
  6707. function usebox()
  6708. pcall(function()
  6709. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  6710. if string.find(v.Name, "Rare Box") or string.find(v.Name, "Ultra Rare Box") then
  6711. wait(0.5)
  6712. game:GetService'VirtualUser':CaptureController()
  6713. game:GetService'VirtualUser':Button1Down(Vector2.new(0,0))
  6714. end
  6715. end
  6716. end)
  6717. end
  6718.  
  6719.  
  6720. spawn(function()
  6721. pcall(function()
  6722. while true do wait()
  6723. pcall(function()
  6724. if getgenv().Save["Openbox"] then
  6725. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  6726. if string.find(v.Name, "Rare Box") or string.find(v.Name, "Ultra Rare Box") then
  6727. equipbox()
  6728. end
  6729. end
  6730. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  6731. if string.find(v.Name, "Rare Box") or string.find(v.Name, "Ultra Rare Box") then
  6732. usebox()
  6733. end
  6734. end
  6735. end
  6736. end)
  6737. end
  6738. end)
  6739. end)
  6740.  
  6741. spawn(function()
  6742. pcall(function()
  6743. while true do wait()
  6744. pcall(function()
  6745. if getgenv().Save["Quake"] then
  6746. local plr1 = game.Players.LocalPlayer.Character
  6747. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6748. local args = {
  6749. [1] = tonumber(serializeTable(remotes)),
  6750. [2] = "QuakePower4",
  6751. [3] = "StartCharging",
  6752. [5] = "Right"
  6753. }
  6754.  
  6755. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  6756.  
  6757.  
  6758. local args = {
  6759. [1] = tonumber(serializeTable(remotes)),
  6760. [2] = "QuakePower4",
  6761. [3] = "StopCharging",
  6762. [4] = plr2.Character.HumanoidRootPart,
  6763. [5] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6764. [6] = 100,
  6765. [7] = plr2.Character.HumanoidRootPart.Position
  6766. }
  6767.  
  6768. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  6769. end
  6770. end)
  6771. end
  6772. end)
  6773. end)
  6774.  
  6775. spawn(function()
  6776. pcall(function()
  6777. while true do wait()
  6778. pcall(function()
  6779. if getgenv().Save["Quake2"] then
  6780. local plr1 = game.Players.LocalPlayer.Character
  6781. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6782. local args = {
  6783. [1] = tonumber(serializeTable(remotes)),
  6784. [2] = "QuakePower3",
  6785. [3] = "StartCharging",
  6786. [5] = "Left"
  6787. }
  6788.  
  6789. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  6790.  
  6791.  
  6792. local args = {
  6793. [1] = tonumber(serializeTable(remotes)),
  6794. [2] = "QuakePower3",
  6795. [3] = "StopCharging",
  6796. [4] = plr2.Character.HumanoidRootPart,
  6797. [5] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6798. [6] = 60,
  6799. [7] = plr2.Character.HumanoidRootPart.Position
  6800. }
  6801.  
  6802. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  6803. end
  6804. end)
  6805. end
  6806. end)
  6807. end)
  6808.  
  6809. spawn(function()
  6810. pcall(function()
  6811. while true do wait()
  6812. pcall(function()
  6813. if getgenv().Save["Quake3"] then
  6814. local plr1 = game.Players.LocalPlayer.Character
  6815. local plr2 = game.Players:FindFirstChild(getgenv().Save["Players"])
  6816. local args = {
  6817. [1] = tonumber(serializeTable(remotes)),
  6818. [2] = "QuakePower2",
  6819. [3] = "StartCharging"
  6820. }
  6821.  
  6822. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  6823.  
  6824. local args = {
  6825. [1] = tonumber(serializeTable(remotes)),
  6826. [2] = "QuakePower2",
  6827. [3] = "StopCharging",
  6828. [4] = CFrame.new(plr2.Character.HumanoidRootPart.Position),
  6829. [6] = 100,
  6830. [7] = plr2.Character.HumanoidRootPart.Position,
  6831. [8] = plr2.Character.HumanoidRootPart.Position
  6832. }
  6833.  
  6834. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  6835. end
  6836. end)
  6837. end
  6838. end)
  6839. end)
  6840.  
  6841. spawn(function()
  6842. pcall(function()
  6843. while true do wait()
  6844. pcall(function()
  6845. if getgenv().Save["FixSpam"] then
  6846. wait(3)
  6847. game:GetService("VirtualInputManager"):SendKeyEvent(true, "C", false, game)
  6848. game:GetService("VirtualInputManager"):SendKeyEvent(false, "C", false, game)
  6849. end
  6850. end)
  6851. end
  6852. end)
  6853. end)
  6854.  
  6855. spawn(function()
  6856. pcall(function()
  6857. while true do wait()
  6858. pcall(function()
  6859. if getgenv().Save["Noclip"] then
  6860. if not plr.Character.HumanoidRootPart:FindFirstChild("BodyVelocity") and getgenv().Save["Noclip"] then
  6861. local BV = Instance.new("BodyVelocity", plr.Character.HumanoidRootPart)
  6862. BV.MaxForce = Vector3.new(100000, 100000, 100000)
  6863. BV.Velocity = Vector3.new(0, 0, 0)
  6864. elseif getgenv().Save["Noclip"] == false then
  6865. for i,v in pairs(plr.Character.HumanoidRootPart:GetChildren()) do
  6866. if v.Name == "BodyVelocity" then
  6867. v:destroy()
  6868. end
  6869. end
  6870. end
  6871. end
  6872. end)
  6873. end
  6874. end)
  6875. end)
  6876.  
  6877. spawn(function()
  6878. pcall(function()
  6879. while true do wait()
  6880. pcall(function()
  6881. if getgenv().Save["AMtdf"] then
  6882. pcall(function()
  6883. for i,v in pairs(game.Players:GetChildren()) do
  6884. if v.Name ~= plr.Name and v.Character.Humanoid.Health > 0 then
  6885. if (plr.Character.HumanoidRootPart.Position - v.Character.HumanoidRootPart.Position).Magnitude <= getgenv().Save["DistanceDefense"] then
  6886. print("AAA")
  6887. if v.Character.Humanoid.Health > 0 and getgenv().Save["Mtdf"] == "Flare" then
  6888.  
  6889. local args = {
  6890. [1] = tonumber(serializeTable(remotes)),
  6891. [2] = "FlarePower2",
  6892. [3] = "StartCharging",
  6893. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  6894. [5] = v.Character.HumanoidRootPart,
  6895. [6] = "Right"
  6896. }
  6897.  
  6898. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  6899.  
  6900. local args = {
  6901. [1] = tonumber(serializeTable(remotes)),
  6902. [2] = "FlarePower2",
  6903. [3] = "StopCharging",
  6904. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  6905. [6] = 100
  6906. }
  6907.  
  6908. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  6909. local args = {
  6910. [1] = tonumber(serializeTable(remotes)),
  6911. [2] = "FlarePower4"
  6912. }
  6913.  
  6914. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  6915.  
  6916. local args = {
  6917. [1] = tonumber(serializeTable(remotes)),
  6918. [2] = "FlarePower5",
  6919. [3] = "StartCharging",
  6920. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  6921. [5] = v.Character.HumanoidRootPart,
  6922. [6] = "Right"
  6923. }
  6924.  
  6925. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  6926.  
  6927. local args = {
  6928. [1] = tonumber(serializeTable(remotes)),
  6929. [2] = "FlarePower5",
  6930. [3] = "StopCharging",
  6931. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  6932. [5] = v.Character.HumanoidRootPart,
  6933. [6] = 100
  6934. }
  6935.  
  6936. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  6937. end
  6938. if v.Character.Humanoid.Health > 0 and getgenv().Save["Mtdf"] == "Pika" then
  6939.  
  6940. local args = {
  6941. [1] = tonumber(serializeTable(remotes)),
  6942. [2] = "LightPower8",
  6943. [3] = "StartCharging",
  6944. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  6945. [5] = v.Character.HumanoidRootPart,
  6946. [6] = "Right"
  6947. }
  6948.  
  6949. game:GetService("Players").LocalPlayer.Character.Powers.Light.RemoteEvent:FireServer(unpack(args))
  6950.  
  6951.  
  6952. local args = {
  6953. [1] = tonumber(serializeTable(remotes)),
  6954. [2] = "LightPower8",
  6955. [3] = "StopCharging",
  6956. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  6957. [5] = v.Character.HumanoidRootPart,
  6958. [6] = 100
  6959. }
  6960.  
  6961. game:GetService("Players").LocalPlayer.Character.Powers.Light.RemoteEvent:FireServer(unpack(args))
  6962. end
  6963. if v.Character.Humanoid.Health > 0 and getgenv().Save["Mtdf"] == "Vampire" then
  6964.  
  6965. local args = {
  6966. [1] = tonumber(serializeTable(remotes)),
  6967. [2] = "VampirePower11",
  6968. [3] = "StartCharging",
  6969. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  6970. [5] = v.Character.HumanoidRootPart,
  6971. [6] = "Right"
  6972. }
  6973.  
  6974. game:GetService("Players").LocalPlayer.Character.Powers.Vampire.RemoteEvent:FireServer(unpack(args))
  6975.  
  6976.  
  6977.  
  6978. local args = {
  6979. [1] = tonumber(serializeTable(remotes)),
  6980. [2] = "VampirePower11",
  6981. [3] = "StopCharging",
  6982. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  6983. [5] = v.Character.HumanoidRootPart,
  6984. [6] = 100
  6985. }
  6986.  
  6987. game:GetService("Players").LocalPlayer.Character.Powers.Vampire.RemoteEvent:FireServer(unpack(args))
  6988. end
  6989. if v.Character.Humanoid.Health > 0 and getgenv().Save["Mtdf"] == "Gravity" then
  6990.  
  6991. local args = {
  6992. [1] = tonumber(serializeTable(remotes)),
  6993. [2] = "GravityPower12",
  6994. [3] = "StartCharging"
  6995. }
  6996.  
  6997. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  6998.  
  6999.  
  7000. local args = {
  7001. [1] = tonumber(serializeTable(remotes)),
  7002. [2] = "GravityPower12",
  7003. [3] = "StartCharging",
  7004. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  7005. [5] = v.Character.HumanoidRootPart
  7006. }
  7007.  
  7008. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  7009.  
  7010. local args = {
  7011. [1] = tonumber(serializeTable(remotes)),
  7012. [2] = "GravityPower12",
  7013. [3] = "StopCharging",
  7014. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  7015. [5] = v.Character.HumanoidRootPart,
  7016. [6] = 150
  7017. }
  7018.  
  7019. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  7020. end
  7021. if v.Character.Humanoid.Health > 0 and getgenv().Save["Mtdf"] == "Quake" then
  7022.  
  7023. local args = {
  7024. [1] = tonumber(serializeTable(remotes)),
  7025. [2] = "QuakePower4",
  7026. [3] = "StartCharging",
  7027. [5] = "Right"
  7028. }
  7029.  
  7030. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  7031.  
  7032.  
  7033. local args = {
  7034. [1] = tonumber(serializeTable(remotes)),
  7035. [2] = "QuakePower4",
  7036. [3] = "StopCharging",
  7037. [4] = v.Character.HumanoidRootPart,
  7038. [5] = CFrame.new(v.Character.HumanoidRootPart.Position),
  7039. [6] = 100,
  7040. [7] = v.Character.HumanoidRootPart.Position
  7041. }
  7042.  
  7043. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  7044. end
  7045. if v.Character.Humanoid.Health > 0 and getgenv().Save["Mtdf"] == "Rumble" then
  7046.  
  7047. local args = {
  7048. [1] = tonumber(serializeTable(remotes)),
  7049. [2] = "RumblePower2",
  7050. [3] = "StartCharging",
  7051. [4] = CFrame.new(v.Character.HumanoidRootPart.CFrame.Position.x,v.Character.HumanoidRootPart.CFrame.Position.y - 10, v.Character.HumanoidRootPart.CFrame.Position.z),
  7052. [5] = v.Character.HumanoidRootPart,
  7053. [6] = "Right"
  7054. }
  7055.  
  7056. game:GetService("Players").LocalPlayer.Character.Powers.Rumble.RemoteEvent:FireServer(unpack(args))
  7057.  
  7058.  
  7059.  
  7060. local args = {
  7061. [1] = tonumber(serializeTable(remotes)),
  7062. [2] = "RumblePower2",
  7063. [3] = "StopCharging",
  7064. [4] = Vector3.new(v.Character.HumanoidRootPart.CFrame.Position.x,v.Character.HumanoidRootPart.CFrame.Position.y - 10, v.Character.HumanoidRootPart.CFrame.Position.z),
  7065. [5] = v.Character.HumanoidRootPart,
  7066. [6] = 200,
  7067. [7] = Vector3.new(v.Character.HumanoidRootPart.CFrame.Position.x,v.Character.HumanoidRootPart.CFrame.Position.y - 10, v.Character.HumanoidRootPart.CFrame.Position.z)
  7068. }
  7069.  
  7070. game:GetService("Players").LocalPlayer.Character.Powers.Rumble.RemoteEvent:FireServer(unpack(args))
  7071. end
  7072. if v.Character.Humanoid.Health > 0 and getgenv().Save["Mtdf"] == "Magma" then
  7073.  
  7074. local args = {
  7075. [1] = tonumber(serializeTable(remotes)),
  7076. [2] = "MagmaPower7",
  7077. [3] = "StartCharging",
  7078. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  7079. [5] = v.Character.HumanoidRootPart,
  7080. [6] = "Right"
  7081. }
  7082.  
  7083. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  7084.  
  7085. local args = {
  7086. [1] = tonumber(serializeTable(remotes)),
  7087. [2] = "MagmaPower7",
  7088. [3] = "StopCharging",
  7089. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  7090. [6] = 100
  7091. }
  7092.  
  7093. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  7094.  
  7095. local args = {
  7096. [1] = tonumber(serializeTable(remotes)),
  7097. [2] = "MagmaPower7",
  7098. [3] = "StopCharging",
  7099. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  7100. [5] = v.Character.HumanoidRootPart,
  7101. [6] = 100
  7102. }
  7103.  
  7104. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  7105. local args = {
  7106. [1] = tonumber(serializeTable(remotes)),
  7107. [2] = "MagmaPower7",
  7108. [3] = "StartCharging",
  7109. [4] = CFrame.new(v.Character.HumanoidRootPart.Position),
  7110. [5] = v.Character.HumanoidRootPart,
  7111. [6] = "Left"
  7112. }
  7113.  
  7114. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  7115. end
  7116. end
  7117. end
  7118. end
  7119. end)
  7120. end
  7121. end)
  7122. end
  7123. end)
  7124. end)
  7125.  
  7126.  
  7127. spawn(function()
  7128. pcall(function()
  7129. while true do task.wait()
  7130. if getgenv().Save["FastAttack"] then
  7131. pcall(function()
  7132. if plr.Character:FindFirstChild("Yoru") and tonumber(serializeTable(attackremote)) ~= nil and tonumber(serializeTable(attackremote)) ~= "" then
  7133. local args = {
  7134. [1] = tonumber(serializeTable(attackremote))
  7135. }
  7136.  
  7137. game:GetService("Players").LocalPlayer.Character.Yoru.RequestAnimation:FireServer(unpack(args))
  7138. local args = {
  7139. [1] = tonumber(serializeTable(attackremote))
  7140. }
  7141.  
  7142. game:GetService("Players").LocalPlayer.Character.Yoru.RequestAnimation:FireServer(unpack(args))
  7143. local args = {
  7144. [1] = tonumber(serializeTable(attackremote))
  7145. }
  7146.  
  7147. game:GetService("Players").LocalPlayer.Character.Yoru.RequestAnimation:FireServer(unpack(args))
  7148. local args = {
  7149. [1] = tonumber(serializeTable(attackremote))
  7150. }
  7151.  
  7152. game:GetService("Players").LocalPlayer.Character.Yoru.RequestAnimation:FireServer(unpack(args))
  7153. local args = {
  7154. [1] = tonumber(serializeTable(attackremote))
  7155. }
  7156.  
  7157. game:GetService("Players").LocalPlayer.Character.Yoru.RequestAnimation:FireServer(unpack(args))
  7158. local args = {
  7159. [1] = tonumber(serializeTable(attackremote))
  7160. }
  7161.  
  7162. game:GetService("Players").LocalPlayer.Character.Yoru.RequestAnimation:FireServer(unpack(args))
  7163. local args = {
  7164. [1] = tonumber(serializeTable(attackremote))
  7165. }
  7166.  
  7167. game:GetService("Players").LocalPlayer.Character.Yoru.RequestAnimation:FireServer(unpack(args))
  7168. local args = {
  7169. [1] = tonumber(serializeTable(attackremote))
  7170. }
  7171.  
  7172. game:GetService("Players").LocalPlayer.Character.Yoru.RequestAnimation:FireServer(unpack(args))
  7173. game:GetService'VirtualUser':CaptureController()
  7174. game:GetService'VirtualUser':Button1Down(Vector2.new(0,0))
  7175. end
  7176. end)
  7177. end
  7178. end
  7179. end)
  7180. end)
  7181.  
  7182. spawn(function()
  7183. pcall(function()
  7184. while true do wait()
  7185. pcall(function()
  7186. if getgenv().Save["Buso"] then
  7187. pcall(function()
  7188. if game:GetService("Players").LocalPlayer.PlayerGui.HealthBar.Frame.Haki.Frame.Visible == true and not game:GetService("Players").LocalPlayer.PlayerGui.HealthBar.Frame.Status:FindFirstChild("BusoHaki") then
  7189. workspace.UserData["User_"..game.Players.LocalPlayer.UserId].UpdateHaki:FireServer()
  7190. end
  7191. end)
  7192. end
  7193. end)
  7194. end
  7195. end)
  7196. end)
  7197.  
  7198. getgenv().drinkcheck = false
  7199.  
  7200. spawn(function()
  7201. pcall(function()
  7202. while true do wait()
  7203. pcall(function()
  7204. if getgenv().Save["drink"] and getgenv().drinkcheck then
  7205. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  7206. if v:IsA("Tool") and string.find(v.Name, "Juice") or string.find(v.Name, "Milk") or string.find(v.Name, "Cider") or string.find(v.Name, "Lemonade") or string.find(v.Name, "Smoothie") or string.find(v.Name, "Golden") then
  7207. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  7208. game:GetService'VirtualUser':CaptureController()
  7209. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  7210. end
  7211. end
  7212. end
  7213. end)
  7214. end
  7215. end)
  7216. end)
  7217.  
  7218. spawn(function()
  7219. pcall(function()
  7220. while true do wait()
  7221. pcall(function()
  7222. if getgenv().Save["mixer"] then
  7223. pcall(function()
  7224. if getgenv().Save["drink"] == true then
  7225. for i,v in pairs(game.Workspace:GetChildren()) do
  7226. if v.ClassName == "Tool" then
  7227. v.Handle.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  7228. end
  7229. end
  7230. wait(1)
  7231. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-12, 216, -351)
  7232. wait(0.2)
  7233. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7234. if v:IsA("ClickDetector") then
  7235. fireclickdetector(v)
  7236. end
  7237. end
  7238.  
  7239. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7240. if v:IsA("ClickDetector") then
  7241. fireclickdetector(v)
  7242. end
  7243. end
  7244. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4, 216, -378)
  7245. wait(0.2)
  7246. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7247. if v:IsA("ClickDetector") then
  7248. fireclickdetector(v)
  7249. end
  7250. end
  7251.  
  7252. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7253. if v:IsA("ClickDetector") then
  7254. fireclickdetector(v)
  7255. end
  7256. end
  7257. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-114, 216, -750)
  7258. wait(0.2)
  7259. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7260. if v:IsA("ClickDetector") then
  7261. fireclickdetector(v)
  7262. end
  7263. end
  7264.  
  7265. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7266. if v:IsA("ClickDetector") then
  7267. fireclickdetector(v)
  7268. end
  7269. end
  7270. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-133, 216, -710)
  7271. wait(0.2)
  7272. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7273. if v:IsA("ClickDetector") then
  7274. fireclickdetector(v)
  7275. end
  7276. end
  7277.  
  7278. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7279. if v:IsA("ClickDetector") then
  7280. fireclickdetector(v)
  7281. end
  7282. end
  7283. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-204, 224, -206)
  7284. wait(0.2)
  7285. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7286. if v:IsA("ClickDetector") then
  7287. fireclickdetector(v)
  7288. end
  7289. end
  7290.  
  7291. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7292. if v:IsA("ClickDetector") then
  7293. fireclickdetector(v)
  7294. end
  7295. end
  7296. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1754, 217, -327)
  7297. wait(0.2)
  7298. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7299. if v:IsA("ClickDetector") then
  7300. fireclickdetector(v)
  7301. end
  7302. end
  7303.  
  7304. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7305. if v:IsA("ClickDetector") then
  7306. fireclickdetector(v)
  7307. end
  7308. end
  7309. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1706, 217, -326)
  7310. wait(0.2)
  7311. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7312. if v:IsA("ClickDetector") then
  7313. fireclickdetector(v)
  7314. end
  7315. end
  7316.  
  7317. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7318. if v:IsA("ClickDetector") then
  7319. fireclickdetector(v)
  7320. end
  7321. end
  7322. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1754, 216, -217)
  7323. wait(0.2)
  7324. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7325. if v:IsA("ClickDetector") then
  7326. fireclickdetector(v)
  7327. end
  7328. end
  7329.  
  7330. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7331. if v:IsA("ClickDetector") then
  7332. fireclickdetector(v)
  7333. end
  7334. end
  7335. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1550, 217, -307)
  7336. wait(0.2)
  7337. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7338. if v:IsA("ClickDetector") then
  7339. fireclickdetector(v)
  7340. end
  7341. end
  7342.  
  7343. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7344. if v:IsA("ClickDetector") then
  7345. fireclickdetector(v)
  7346. end
  7347. end
  7348. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1494, 217, -306)
  7349. wait(0.2)
  7350. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7351. if v:IsA("ClickDetector") then
  7352. fireclickdetector(v)
  7353. end
  7354. end
  7355.  
  7356. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7357. if v:IsA("ClickDetector") then
  7358. fireclickdetector(v)
  7359. end
  7360. end
  7361. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1493, 217, -290)
  7362. wait(0.2)
  7363. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7364. if v:IsA("ClickDetector") then
  7365. fireclickdetector(v)
  7366. end
  7367. end
  7368.  
  7369. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7370. if v:IsA("ClickDetector") then
  7371. fireclickdetector(v)
  7372. end
  7373. end
  7374. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1871, 218, 823)
  7375. wait(0.2)
  7376. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7377. if v:IsA("ClickDetector") then
  7378. fireclickdetector(v)
  7379. end
  7380. end
  7381.  
  7382. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7383. if v:IsA("ClickDetector") then
  7384. fireclickdetector(v)
  7385. end
  7386. end
  7387. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1858, 218, 814)
  7388. wait(0.2)
  7389. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7390. if v:IsA("ClickDetector") then
  7391. fireclickdetector(v)
  7392. end
  7393. end
  7394.  
  7395. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7396. if v:IsA("ClickDetector") then
  7397. fireclickdetector(v)
  7398. end
  7399. end
  7400. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1882, 219, 838)
  7401. wait(0.2)
  7402. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7403. if v:IsA("ClickDetector") then
  7404. fireclickdetector(v)
  7405. end
  7406. end
  7407.  
  7408. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7409. if v:IsA("ClickDetector") then
  7410. fireclickdetector(v)
  7411. end
  7412. end
  7413. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1989, 235, 568)
  7414. wait(0.2)
  7415. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7416. if v:IsA("ClickDetector") then
  7417. fireclickdetector(v)
  7418. end
  7419. end
  7420.  
  7421. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7422. if v:IsA("ClickDetector") then
  7423. fireclickdetector(v)
  7424. end
  7425. end
  7426. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1970, 219, 576)
  7427. wait(0.2)
  7428. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7429. if v:IsA("ClickDetector") then
  7430. fireclickdetector(v)
  7431. end
  7432. end
  7433.  
  7434. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7435. if v:IsA("ClickDetector") then
  7436. fireclickdetector(v)
  7437. end
  7438. end
  7439. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1989, 218, 561)
  7440. wait(0.2)
  7441. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7442. if v:IsA("ClickDetector") then
  7443. fireclickdetector(v)
  7444. end
  7445. end
  7446.  
  7447. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7448. if v:IsA("ClickDetector") then
  7449. fireclickdetector(v)
  7450. end
  7451. end
  7452. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1981, 217, 553)
  7453. wait(0.2)
  7454. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7455. if v:IsA("ClickDetector") then
  7456. fireclickdetector(v)
  7457. end
  7458. end
  7459.  
  7460. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7461. if v:IsA("ClickDetector") then
  7462. fireclickdetector(v)
  7463. end
  7464. end
  7465. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1517, 217, -289)
  7466. wait(0.2)
  7467. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7468. if v:IsA("ClickDetector") then
  7469. fireclickdetector(v)
  7470. end
  7471. end
  7472.  
  7473. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7474. if v:IsA("ClickDetector") then
  7475. fireclickdetector(v)
  7476. end
  7477. end
  7478. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1186, 217, -285)
  7479. wait(0.2)
  7480. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7481. if v:IsA("ClickDetector") then
  7482. fireclickdetector(v)
  7483. end
  7484. end
  7485.  
  7486. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7487. if v:IsA("ClickDetector") then
  7488. fireclickdetector(v)
  7489. end
  7490. end
  7491. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1173, 217, -286)
  7492. wait(0.2)
  7493. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7494. if v:IsA("ClickDetector") then
  7495. fireclickdetector(v)
  7496. end
  7497. end
  7498.  
  7499. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7500. if v:IsA("ClickDetector") then
  7501. fireclickdetector(v)
  7502. end
  7503. end
  7504. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1009, 220, 3342)
  7505. wait(0.2)
  7506. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7507. if v:IsA("ClickDetector") then
  7508. fireclickdetector(v)
  7509. end
  7510. end
  7511.  
  7512. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7513. if v:IsA("ClickDetector") then
  7514. fireclickdetector(v)
  7515. end
  7516. end
  7517. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2601, 254, 1111)
  7518. wait(0.2)
  7519. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7520. if v:IsA("ClickDetector") then
  7521. fireclickdetector(v)
  7522. end
  7523. end
  7524.  
  7525. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7526. if v:IsA("ClickDetector") then
  7527. fireclickdetector(v)
  7528. end
  7529. end
  7530. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2618, 254, 1110)
  7531. wait(0.2)
  7532. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7533. if v:IsA("ClickDetector") then
  7534. fireclickdetector(v)
  7535. end
  7536. end
  7537.  
  7538. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7539. if v:IsA("ClickDetector") then
  7540. fireclickdetector(v)
  7541. end
  7542. end
  7543. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(989, 224, -3337)
  7544. wait(0.2)
  7545. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7546. if v:IsA("ClickDetector") then
  7547. fireclickdetector(v)
  7548. end
  7549. end
  7550.  
  7551. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7552. if v:IsA("ClickDetector") then
  7553. fireclickdetector(v)
  7554. end
  7555. end
  7556. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(916, 216, 3409)
  7557. wait(0.2)
  7558. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7559. if v:IsA("ClickDetector") then
  7560. fireclickdetector(v)
  7561. end
  7562. end
  7563.  
  7564. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7565. if v:IsA("ClickDetector") then
  7566. fireclickdetector(v)
  7567. end
  7568. end
  7569. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(882, 218, 3364)
  7570. wait(0.2)
  7571. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7572. if v:IsA("ClickDetector") then
  7573. fireclickdetector(v)
  7574. end
  7575. end
  7576.  
  7577. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7578. if v:IsA("ClickDetector") then
  7579. fireclickdetector(v)
  7580. end
  7581. end
  7582. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1167, 219, 3228)
  7583. wait(0.2)
  7584. for i,v in pairs(game:GetService("Workspace").Barrels.Crates:GetDescendants()) do
  7585. if v:IsA("ClickDetector") then
  7586. fireclickdetector(v)
  7587. end
  7588. end
  7589.  
  7590. for i,v in pairs(game:GetService("Workspace").Barrels.Barrels:GetDescendants()) do
  7591. if v:IsA("ClickDetector") then
  7592. fireclickdetector(v)
  7593. end
  7594. end
  7595.  
  7596. wait(2)
  7597. for i,v in pairs(game:GetService("Workspace").Island8.Kitchen:GetDescendants()) do
  7598. if v:IsA("ClickDetector") then
  7599. fireclickdetector(v)
  7600. end
  7601. end
  7602. wait(7)
  7603. getgenv().drinkcheck = true
  7604. end
  7605. end)
  7606. end
  7607. end)
  7608. end
  7609. end)
  7610. end)
  7611.  
  7612. spawn(function()
  7613. pcall(function()
  7614. while true do wait()
  7615. pcall(function()
  7616. if getgenv().Save["hopmr"] and getgenv().drinkcheck then
  7617. if getgenv().Save["hopmr"] and getgenv().drinkcheck then
  7618. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  7619. wait(20)
  7620. if v:IsA("Tool") and (not string.find(v.Name , "Juice") and not string.find(v.Name , "Milk")) and getgenv().Save["hopmr"] and getgenv().drinkcheck == true then
  7621. wait(10)
  7622. print("HOP")
  7623. if v:IsA("Tool") and (not string.find(v.Name , "Juice") or not string.find(v.Name , "Milk")) and getgenv().Save["hopmr"] and getgenv().drinkcheck == true then
  7624. create:Notifile("Neon V2", "Hop Now", 5)
  7625. local PlaceID = game.PlaceId
  7626. local AllIDs = {}
  7627. local foundAnything = ""
  7628. local actualHour = os.date("!*t").hour
  7629. local Deleted = false
  7630. local File = pcall(function()
  7631. AllIDs = game:GetService('HttpService'):JSONDecode(readfile("NotSameServers.json"))
  7632. end)
  7633. if not File then
  7634. table.insert(AllIDs, actualHour)
  7635. writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  7636. end
  7637. function TPReturner()
  7638. local Site;
  7639. if foundAnything == "" then
  7640. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  7641. else
  7642. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  7643. end
  7644. local ID = ""
  7645. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  7646. foundAnything = Site.nextPageCursor
  7647. end
  7648. local num = 0;
  7649. for i,v in pairs(Site.data) do
  7650. local Possible = true
  7651. ID = tostring(v.id)
  7652. if tonumber(v.maxPlayers) > tonumber(v.playing) then
  7653. for _,Existing in pairs(AllIDs) do
  7654. if num ~= 0 then
  7655. if ID == tostring(Existing) then
  7656. Possible = false
  7657. end
  7658. else
  7659. if tonumber(actualHour) ~= tonumber(Existing) then
  7660. local delFile = pcall(function()
  7661. delfile("NotSameServers.json")
  7662. AllIDs = {}
  7663. table.insert(AllIDs, actualHour)
  7664. end)
  7665. end
  7666. end
  7667. num = num + 1
  7668. end
  7669. if Possible == true then
  7670. table.insert(AllIDs, ID)
  7671. wait()
  7672. pcall(function()
  7673. writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  7674. wait()
  7675. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  7676. end)
  7677. wait(4)
  7678. end
  7679. end
  7680. end
  7681. end
  7682.  
  7683. function Teleport()
  7684. while wait() do
  7685. pcall(function()
  7686. TPReturner()
  7687. if foundAnything ~= "" then
  7688. TPReturner()
  7689. end
  7690. end)
  7691. end
  7692. end
  7693.  
  7694.  
  7695. Teleport()
  7696. end
  7697. end
  7698. end
  7699. end
  7700. end
  7701. end)
  7702. end
  7703. end)
  7704. end)
  7705.  
  7706. function danhvaodauno()
  7707. local no = nil
  7708. for i,v in pairs(game.Players:GetChildren()) do
  7709. if getgenv().Save["killplayers"] and (plr.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 and (v.Character.HumanoidRootPart.Position - game:GetService("Workspace").CustomizeModel.SpawnAreaStuffK.HBase.Position).Magnitude > 1000 then
  7710. no = v
  7711. end
  7712. end
  7713. return no
  7714. end
  7715.  
  7716. spawn(function()
  7717. pcall(function()
  7718. while true do wait()
  7719. pcall(function()
  7720. if getgenv().Save["killplayers"] then
  7721. plr.Character.HumanoidRootPart.CFrame = danhvaodauno().Character.HumanoidRootPart.CFrame * CFrame.new(0,-100,0)
  7722. if getgenv().Save["ChooseMet"] == "Normal" then
  7723. plr1.HumanoidRootPart.CFrame = danhvaodauno().Character.HumanoidRootPart.CFrame * CFrame.new(0,0,3)
  7724. end
  7725. if getgenv().Save["ChooseMet"] == "Angel" then
  7726. plr1.HumanoidRootPart.CFrame = danhvaodauno().Character.HumanoidRootPart.CFrame * CFrame.new(0,200,0)
  7727. end
  7728. if getgenv().Save["ChooseMet"] == "Under" then
  7729. plr1.HumanoidRootPart.CFrame = danhvaodauno().Character.HumanoidRootPart.CFrame * CFrame.new(0,-200,0)
  7730. end
  7731. if danhvaodauno().Character.Humanoid.Health > 0 and getgenv().Save["mtfa"] == "Flare" then
  7732.  
  7733. local args = {
  7734. [1] = tonumber(serializeTable(remotes)),
  7735. [2] = "FlarePower2",
  7736. [3] = "StartCharging",
  7737. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7738. [5] = danhvaodauno().Character.HumanoidRootPart,
  7739. [6] = "Right"
  7740. }
  7741.  
  7742. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  7743.  
  7744. local args = {
  7745. [1] = tonumber(serializeTable(remotes)),
  7746. [2] = "FlarePower2",
  7747. [3] = "StopCharging",
  7748. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7749. [6] = 100
  7750. }
  7751.  
  7752. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  7753. local args = {
  7754. [1] = tonumber(serializeTable(remotes)),
  7755. [2] = "FlarePower4"
  7756. }
  7757.  
  7758. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  7759.  
  7760. local args = {
  7761. [1] = tonumber(serializeTable(remotes)),
  7762. [2] = "FlarePower5",
  7763. [3] = "StartCharging",
  7764. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7765. [5] = danhvaodauno().Character.HumanoidRootPart,
  7766. [6] = "Right"
  7767. }
  7768.  
  7769. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  7770.  
  7771. local args = {
  7772. [1] = tonumber(serializeTable(remotes)),
  7773. [2] = "FlarePower5",
  7774. [3] = "StopCharging",
  7775. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7776. [5] = danhvaodauno().Character.HumanoidRootPart,
  7777. [6] = 100
  7778. }
  7779.  
  7780. game:GetService("Players").LocalPlayer.Character.Powers.Flare.RemoteEvent:FireServer(unpack(args))
  7781. end
  7782. if danhvaodauno().Character.Humanoid.Health > 0 and getgenv().Save["mtfa"] == "Pika" then
  7783.  
  7784. local args = {
  7785. [1] = tonumber(serializeTable(remotes)),
  7786. [2] = "LightPower8",
  7787. [3] = "StartCharging",
  7788. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7789. [5] = danhvaodauno().Character.HumanoidRootPart,
  7790. [6] = "Right"
  7791. }
  7792.  
  7793. game:GetService("Players").LocalPlayer.Character.Powers.Light.RemoteEvent:FireServer(unpack(args))
  7794.  
  7795.  
  7796. local args = {
  7797. [1] = tonumber(serializeTable(remotes)),
  7798. [2] = "LightPower8",
  7799. [3] = "StopCharging",
  7800. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7801. [5] = danhvaodauno().Character.HumanoidRootPart,
  7802. [6] = 100
  7803. }
  7804.  
  7805. game:GetService("Players").LocalPlayer.Character.Powers.Light.RemoteEvent:FireServer(unpack(args))
  7806. end
  7807. if danhvaodauno().Character.Humanoid.Health > 0 and getgenv().Save["mtfa"] == "Vampire" then
  7808.  
  7809. local args = {
  7810. [1] = tonumber(serializeTable(remotes)),
  7811. [2] = "VampirePower11",
  7812. [3] = "StartCharging",
  7813. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7814. [5] = danhvaodauno().Character.HumanoidRootPart,
  7815. [6] = "Right"
  7816. }
  7817.  
  7818. game:GetService("Players").LocalPlayer.Character.Powers.Vampire.RemoteEvent:FireServer(unpack(args))
  7819.  
  7820.  
  7821.  
  7822. local args = {
  7823. [1] = tonumber(serializeTable(remotes)),
  7824. [2] = "VampirePower11",
  7825. [3] = "StopCharging",
  7826. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7827. [5] = danhvaodauno().Character.HumanoidRootPart,
  7828. [6] = 100
  7829. }
  7830.  
  7831. game:GetService("Players").LocalPlayer.Character.Powers.Vampire.RemoteEvent:FireServer(unpack(args))
  7832. end
  7833. if danhvaodauno().Character.Humanoid.Health > 0 and getgenv().Save["mtfa"] == "Gravity" then
  7834.  
  7835. local args = {
  7836. [1] = tonumber(serializeTable(remotes)),
  7837. [2] = "GravityPower12",
  7838. [3] = "StartCharging"
  7839. }
  7840.  
  7841. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  7842.  
  7843.  
  7844. local args = {
  7845. [1] = tonumber(serializeTable(remotes)),
  7846. [2] = "GravityPower12",
  7847. [3] = "StartCharging",
  7848. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7849. [5] = danhvaodauno().Character.HumanoidRootPart
  7850. }
  7851.  
  7852. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  7853.  
  7854. local args = {
  7855. [1] = tonumber(serializeTable(remotes)),
  7856. [2] = "GravityPower12",
  7857. [3] = "StopCharging",
  7858. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7859. [5] = danhvaodauno().Character.HumanoidRootPart,
  7860. [6] = 150
  7861. }
  7862.  
  7863. game:GetService("Players").LocalPlayer.Character.Powers.Gravity.RemoteEvent:FireServer(unpack(args))
  7864. end
  7865. if danhvaodauno().Character.Humanoid.Health > 0 and getgenv().Save["mtfa"] == "Quake" then
  7866.  
  7867. local args = {
  7868. [1] = tonumber(serializeTable(remotes)),
  7869. [2] = "QuakePower4",
  7870. [3] = "StartCharging",
  7871. [5] = "Right"
  7872. }
  7873.  
  7874. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  7875.  
  7876.  
  7877. local args = {
  7878. [1] = tonumber(serializeTable(remotes)),
  7879. [2] = "QuakePower4",
  7880. [3] = "StopCharging",
  7881. [4] = v.Character.HumanoidRootPart,
  7882. [5] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7883. [6] = 100,
  7884. [7] = danhvaodauno().Character.HumanoidRootPart.Position
  7885. }
  7886.  
  7887. game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
  7888. end
  7889. if danhvaodauno().Character.Humanoid.Health > 0 and getgenv().Save["mtfa"] == "Rumble" then
  7890.  
  7891. local args = {
  7892. [1] = tonumber(serializeTable(remotes)),
  7893. [2] = "RumblePower2",
  7894. [3] = "StartCharging",
  7895. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.CFrame.Position.x,danhvaodauno().Character.HumanoidRootPart.CFrame.Position.y - 10, danhvaodauno().Character.HumanoidRootPart.CFrame.Position.z),
  7896. [5] = danhvaodauno().Character.HumanoidRootPart,
  7897. [6] = "Right"
  7898. }
  7899.  
  7900. game:GetService("Players").LocalPlayer.Character.Powers.Rumble.RemoteEvent:FireServer(unpack(args))
  7901.  
  7902.  
  7903.  
  7904. local args = {
  7905. [1] = tonumber(serializeTable(remotes)),
  7906. [2] = "RumblePower2",
  7907. [3] = "StopCharging",
  7908. [4] = Vector3.new(danhvaodauno().Character.HumanoidRootPart.CFrame.Position.x,danhvaodauno().Character.HumanoidRootPart.CFrame.Position.y - 10, danhvaodauno().Character.HumanoidRootPart.CFrame.Position.z),
  7909. [5] = danhvaodauno().Character.HumanoidRootPart,
  7910. [6] = 200,
  7911. [7] = Vector3.new(danhvaodauno().Character.HumanoidRootPart.CFrame.Position.x,danhvaodauno().Character.HumanoidRootPart.CFrame.Position.y - 10, danhvaodauno().Character.HumanoidRootPart.CFrame.Position.z)
  7912. }
  7913.  
  7914. game:GetService("Players").LocalPlayer.Character.Powers.Rumble.RemoteEvent:FireServer(unpack(args))
  7915. end
  7916. if danhvaodauno().Character.Humanoid.Health > 0 and getgenv().Save["mtfa"] == "Magma" then
  7917.  
  7918. local args = {
  7919. [1] = tonumber(serializeTable(remotes)),
  7920. [2] = "MagmaPower7",
  7921. [3] = "StartCharging",
  7922. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7923. [5] = danhvaodauno().Character.HumanoidRootPart,
  7924. [6] = "Right"
  7925. }
  7926.  
  7927. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  7928.  
  7929. local args = {
  7930. [1] = tonumber(serializeTable(remotes)),
  7931. [2] = "MagmaPower7",
  7932. [3] = "StopCharging",
  7933. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7934. [6] = 100
  7935. }
  7936.  
  7937. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  7938.  
  7939. local args = {
  7940. [1] = tonumber(serializeTable(remotes)),
  7941. [2] = "MagmaPower7",
  7942. [3] = "StopCharging",
  7943. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7944. [5] = danhvaodauno().Character.HumanoidRootPart,
  7945. [6] = 100
  7946. }
  7947.  
  7948. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  7949. local args = {
  7950. [1] = tonumber(serializeTable(remotes)),
  7951. [2] = "MagmaPower7",
  7952. [3] = "StartCharging",
  7953. [4] = CFrame.new(danhvaodauno().Character.HumanoidRootPart.Position),
  7954. [5] = danhvaodauno().Character.HumanoidRootPart,
  7955. [6] = "Left"
  7956. }
  7957.  
  7958. game:GetService("Players").LocalPlayer.Character.Powers.Magma.RemoteEvent:FireServer(unpack(args))
  7959. end
  7960. end
  7961. end)
  7962. end
  7963. end)
  7964. end)
  7965. function emotes()
  7966. game:GetService("Players").LocalPlayer.PlayerGui.Menu.Frame.C.Frame.Nametag.Text = "N E O N HUB OP:L".. "\n" .. "https://discord.gg/fkJPchKkAp"
  7967. local Players = game:GetService("Players") local cache = {} function lol(name) if cache[name] then return cache[name] end local player = Players:FindFirstChild(name) if player then cache[name] = player.UserId return player.UserId end local id pcall(function () id = Players:lol(name) end) cache[name] = id return id end local ehh = game.Players.LocalPlayer.Name local Final = lol(ehh)
  7968. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark1.Value = true
  7969. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark2.Value = true
  7970. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark3.Value = true
  7971. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark4.Value = true
  7972. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark5.Value = true
  7973. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark6.Value = true
  7974. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark7.Value = true
  7975. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark8.Value = true
  7976. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark9.Value = true
  7977. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark10.Value = true
  7978. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark11.Value = true
  7979. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark12.Value = true
  7980. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark13.Value = true
  7981. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark14.Value = true
  7982. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark15.Value = true
  7983. game:GetService("Workspace").UserData["User_"..Final].Data.CB_Mark16.Value = true
  7984. end
  7985. function stun()
  7986. local hoangashdeptrai = game.Players.LocalPlayer.Character
  7987. hoangashdeptrai["DF_Disabled"].Value = false
  7988. hoangashdeptrai.HeartStolen.Value = true
  7989. hoangashdeptrai.Returned.Value = false
  7990. hoangashdeptrai.Hobbied.Value = false
  7991. hoangashdeptrai.HMS.Value = false
  7992. hoangashdeptrai.ChillyPunched.Value = false
  7993. hoangashdeptrai.CandyTouched.Value = false
  7994. hoangashdeptrai.Negative.Value = false
  7995. hoangashdeptrai.OpeSevered.Value = false
  7996. hoangashdeptrai.SnowTouched.Value = false
  7997. hoangashdeptrai.RumbleStun.Value = false
  7998. hoangashdeptrai.GravityCrushed.Value = false
  7999. end
  8000. messagebox("Welcome To Nothing Hub","Nothing Hub",0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement