Advertisement
Guest User

Bacon hub 1.1

a guest
Jan 8th, 2022
1,135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 116.43 KB | None | 0 0
  1.  
  2. print("Bacon squad")
  3. game:GetService("StarterGui"):SetCore("SendNotification",{
  4. Title = "Bacon hub",
  5. Text = "ROAD TO 30 SUBS GUYSSSS!",
  6. Button1 = "Ok!",
  7. Duration = 30
  8. })
  9. --Scripting is at the bottom - thx to mana64
  10. if game.CoreGui:FindFirstChild("Library") then
  11. game.CoreGui:FindFirstChild("Library"):Destroy()
  12. end
  13. local VLib = {RainbowColorValue = 0, HueSelectionPosition = 0}
  14. local UserInputService = game:GetService("UserInputService")
  15. local TweenService = game:GetService("TweenService")
  16. local RunService = game:GetService("RunService")
  17. local LocalPlayer = game:GetService("Players").LocalPlayer
  18. local Mouse = LocalPlayer:GetMouse()
  19.  
  20.  
  21. coroutine.wrap(
  22. function()
  23. while wait() do
  24. VLib.RainbowColorValue = VLib.RainbowColorValue + 1 / 255
  25. VLib.HueSelectionPosition = VLib.HueSelectionPosition + 1
  26.  
  27. if VLib.RainbowColorValue >= 1 then
  28. VLib.RainbowColorValue = 0
  29. end
  30.  
  31. if VLib.HueSelectionPosition == 80 then
  32. VLib.HueSelectionPosition = 0
  33. end
  34. end
  35. end
  36. )()
  37.  
  38. local function MakeDraggable(topbarobject, object)
  39. local Dragging = nil
  40. local DragInput = nil
  41. local DragStart = nil
  42. local StartPosition = nil
  43.  
  44. local function Update(input)
  45. local Delta = input.Position - DragStart
  46. local pos =
  47. UDim2.new(
  48. StartPosition.X.Scale,
  49. StartPosition.X.Offset + Delta.X,
  50. StartPosition.Y.Scale,
  51. StartPosition.Y.Offset + Delta.Y
  52. )
  53. local Tween = TweenService:Create(object, TweenInfo.new(0.2), {Position = pos})
  54. Tween:Play()
  55. end
  56.  
  57. topbarobject.InputBegan:Connect(
  58. function(input)
  59. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  60. Dragging = true
  61. DragStart = input.Position
  62. StartPosition = object.Position
  63.  
  64. input.Changed:Connect(
  65. function()
  66. if input.UserInputState == Enum.UserInputState.End then
  67. Dragging = false
  68. end
  69. end
  70. )
  71. end
  72. end
  73. )
  74.  
  75. topbarobject.InputChanged:Connect(
  76. function(input)
  77. if
  78. input.UserInputType == Enum.UserInputType.MouseMovement or
  79. input.UserInputType == Enum.UserInputType.Touch
  80. then
  81. DragInput = input
  82. end
  83. end
  84. )
  85.  
  86. UserInputService.InputChanged:Connect(
  87. function(input)
  88. if input == DragInput and Dragging then
  89. Update(input)
  90. end
  91. end
  92. )
  93. end
  94.  
  95. local Library = Instance.new("ScreenGui")
  96. Library.Name = "Library"
  97. Library.Parent = game.CoreGui
  98. Library.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  99.  
  100. local uitoggled = false
  101. UserInputService.InputBegan:Connect(
  102. function(io, p)
  103. if io.KeyCode == Enum.KeyCode.RightControl then
  104. if uitoggled == false then
  105. Library.Enabled = false
  106. uitoggled = true
  107. else
  108. Library.Enabled = true
  109. uitoggled = false
  110. end
  111. end
  112. end
  113. )
  114.  
  115. function VLib:Window(text, textgame, textcircle)
  116. local FirstTab = false
  117. local MainFrame = Instance.new("Frame")
  118. local MainCorner = Instance.new("UICorner")
  119. local LeftFrame = Instance.new("Frame")
  120. local LeftFrameCorner = Instance.new("UICorner")
  121. local MainTitle = Instance.new("TextLabel")
  122. local Circle = Instance.new("Frame")
  123. local CircleCorner = Instance.new("UICorner")
  124. local CircleName = Instance.new("TextLabel")
  125. local GameTitle = Instance.new("TextLabel")
  126. local TabHolder = Instance.new("Frame")
  127. local TabHoldLayout = Instance.new("UIListLayout")
  128. local RainbowLine = Instance.new("Frame")
  129. local RainbowLineCorner = Instance.new("UICorner")
  130. local ContainerHold = Instance.new("Folder")
  131. local DragFrame = Instance.new("Frame")
  132. local Glow = Instance.new("ImageLabel")
  133.  
  134. MainFrame.Name = "MainFrame"
  135. MainFrame.Parent = Library
  136. MainFrame.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
  137. MainFrame.Position = UDim2.new(0.5, -325, 0.5, -250)
  138. MainFrame.Size = UDim2.new(0, 650, 0, 500)
  139.  
  140. MainCorner.CornerRadius = UDim.new(0, 5)
  141. MainCorner.Name = "MainCorner"
  142. MainCorner.Parent = MainFrame
  143.  
  144. LeftFrame.Name = "LeftFrame"
  145. LeftFrame.Parent = MainFrame
  146. LeftFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  147. LeftFrame.Position = UDim2.new(-0.000674468291, 0, -0.000149806539, 0)
  148. LeftFrame.Size = UDim2.new(0, 190, 0, 500)
  149.  
  150. LeftFrameCorner.CornerRadius = UDim.new(0, 5)
  151. LeftFrameCorner.Name = "LeftFrameCorner"
  152. LeftFrameCorner.Parent = LeftFrame
  153.  
  154. MainTitle.Name = "MainTitle"
  155. MainTitle.Parent = LeftFrame
  156. MainTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  157. MainTitle.BackgroundTransparency = 1.000
  158. MainTitle.Position = UDim2.new(0.168, 0, 0.043, 0)
  159. MainTitle.Size = UDim2.new(0, 71, 0, 20)
  160. MainTitle.Font = Enum.Font.Gotham
  161. MainTitle.Text = text
  162. MainTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  163. MainTitle.TextSize = 25.000
  164. MainTitle.TextXAlignment = Enum.TextXAlignment.Left
  165.  
  166.  
  167. GameTitle.Name = "GameTitle"
  168. GameTitle.Parent = LeftFrame
  169. GameTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  170. GameTitle.BackgroundTransparency = 1.000
  171. GameTitle.Position = UDim2.new(0.168, 0, 0.089, 6)
  172. GameTitle.Size = UDim2.new(0, 71, 0, 20)
  173. GameTitle.Font = Enum.Font.Gotham
  174. GameTitle.Text = textgame
  175. GameTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  176. GameTitle.TextSize = 17.000
  177. GameTitle.TextTransparency = 0.400
  178. GameTitle.TextXAlignment = Enum.TextXAlignment.Left
  179.  
  180. TabHolder.Name = "TabHolder"
  181. TabHolder.Parent = LeftFrame
  182. TabHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  183. TabHolder.BackgroundTransparency = 1.000
  184. TabHolder.Position = UDim2.new(0.0806451589, 0, 0.189360261, 0)
  185. TabHolder.Size = UDim2.new(0, 159, 0, 309)
  186.  
  187. TabHoldLayout.Name = "TabHoldLayout"
  188. TabHoldLayout.Parent = TabHolder
  189. TabHoldLayout.SortOrder = Enum.SortOrder.LayoutOrder
  190. TabHoldLayout.Padding = UDim.new(0,5)
  191.  
  192. ContainerHold.Name = "ContainerHold"
  193. ContainerHold.Parent = MainFrame
  194.  
  195. DragFrame.Name = "DragFrame"
  196. DragFrame.Parent = MainFrame
  197. DragFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  198. DragFrame.BackgroundTransparency = 1.000
  199. DragFrame.Position = UDim2.new(0.30130294, 0, 0.00253164559, 0)
  200. DragFrame.Size = UDim2.new(0, 428, 0, 21)
  201.  
  202. Glow.Name = "Glow"
  203. Glow.Parent = LeftFrame
  204. Glow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  205. Glow.BackgroundTransparency = 1.000
  206. Glow.BorderSizePixel = 0
  207. Glow.Position = UDim2.new(0, -15, 0, -15)
  208. Glow.Size = UDim2.new(1, 30, 1, 30)
  209. Glow.ZIndex = 0
  210. Glow.Image = "rbxassetid://4996891970"
  211. Glow.ImageColor3 = Color3.fromRGB(15, 15, 15)
  212. Glow.ScaleType = Enum.ScaleType.Slice
  213. Glow.SliceCenter = Rect.new(20, 20, 280, 280)
  214.  
  215. MakeDraggable(MainFrame, MainFrame)
  216.  
  217. function VLib:Notification(textdesc)
  218. local NotificationHold = Instance.new("TextButton")
  219. local NotificationFrame = Instance.new("Frame")
  220. local OkayBtn = Instance.new("TextButton")
  221. local OkayBtnCorner = Instance.new("UICorner")
  222. local OkayBtnTitle = Instance.new("TextLabel")
  223. local NotificationTitle = Instance.new("TextLabel")
  224. local NotificationDesc = Instance.new("TextLabel")
  225.  
  226. NotificationHold.Name = "NotificationHold"
  227. NotificationHold.Parent = MainFrame
  228. NotificationHold.BackgroundColor3 = Color3.fromRGB(125, 125, 125)
  229. NotificationHold.BackgroundTransparency = 0.700
  230. NotificationHold.BorderSizePixel = 0
  231. NotificationHold.Size = UDim2.new(0, 650, 0, 500)
  232. NotificationHold.AutoButtonColor = false
  233. NotificationHold.Font = Enum.Font.SourceSans
  234. NotificationHold.Text = ""
  235. NotificationHold.TextColor3 = Color3.fromRGB(0, 0, 0)
  236. NotificationHold.TextSize = 14.000
  237.  
  238. TweenService:Create(
  239. NotificationHold,
  240. TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  241. {BackgroundTransparency = 0.7}
  242. ):Play()
  243. wait(0.4)
  244.  
  245. NotificationFrame.Name = "NotificationFrame"
  246. NotificationFrame.Parent = NotificationHold
  247. NotificationFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  248. NotificationFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  249. NotificationFrame.BorderSizePixel = 0
  250. NotificationFrame.ClipsDescendants = true
  251. NotificationFrame.Position = UDim2.new(0.5, 0, 0.498432577, 0)
  252. NotificationFrame.Size = UDim2.new(0, 0, 0, 0)
  253.  
  254. NotificationFrame:TweenSize(UDim2.new(0, 305,0, 283), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  255.  
  256. OkayBtn.Name = "OkayBtn"
  257. OkayBtn.Parent = NotificationFrame
  258. OkayBtn.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
  259. OkayBtn.Position = UDim2.new(0.171131134, 0, 0.759717345, 0)
  260. OkayBtn.Size = UDim2.new(0, 200, 0, 42)
  261. OkayBtn.AutoButtonColor = false
  262. OkayBtn.Font = Enum.Font.SourceSans
  263. OkayBtn.Text = ""
  264. OkayBtn.TextColor3 = Color3.fromRGB(0, 0, 0)
  265. OkayBtn.TextSize = 14.000
  266.  
  267. OkayBtnCorner.CornerRadius = UDim.new(0, 5)
  268. OkayBtnCorner.Name = "OkayBtnCorner"
  269. OkayBtnCorner.Parent = OkayBtn
  270.  
  271. OkayBtnTitle.Name = "OkayBtnTitle"
  272. OkayBtnTitle.Parent = OkayBtn
  273. OkayBtnTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  274. OkayBtnTitle.BackgroundTransparency = 1.000
  275. OkayBtnTitle.Size = UDim2.new(0, 200, 0, 42)
  276. OkayBtnTitle.Text = "OK!"
  277. OkayBtnTitle.Font = Enum.Font.Gotham
  278. OkayBtnTitle.TextColor3 = Color3.fromRGB(202, 202, 202)
  279. OkayBtnTitle.TextSize = 24.000
  280.  
  281. NotificationTitle.Name = "NotificationTitle"
  282. NotificationTitle.Parent = NotificationFrame
  283. NotificationTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  284. NotificationTitle.BackgroundTransparency = 1.000
  285. NotificationTitle.Position = UDim2.new(0.0559394211, 0, 0.0652336925, 0)
  286. NotificationTitle.Size = UDim2.new(0, 272, 0, 26)
  287. NotificationTitle.ZIndex = 3
  288. NotificationTitle.Font = Enum.Font.Gotham
  289. NotificationTitle.Text = "Notification"
  290. NotificationTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  291. NotificationTitle.TextSize = 24.000
  292.  
  293. NotificationDesc.Name = "NotificationDesc"
  294. NotificationDesc.Parent = NotificationFrame
  295. NotificationDesc.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  296. NotificationDesc.BackgroundTransparency = 1.000
  297. NotificationDesc.Position = UDim2.new(0.0670000017, 0, 0.218999997, 0)
  298. NotificationDesc.Size = UDim2.new(0, 274, 0, 146)
  299. NotificationDesc.Font = Enum.Font.Gotham
  300. NotificationDesc.Text = textdesc
  301. NotificationDesc.TextColor3 = Color3.fromRGB(255, 255, 255)
  302. NotificationDesc.TextSize = 20.000
  303. NotificationDesc.TextWrapped = true
  304. NotificationDesc.TextXAlignment = Enum.TextXAlignment.Center
  305. NotificationDesc.TextYAlignment = Enum.TextYAlignment.Top
  306.  
  307. OkayBtn.MouseEnter:Connect(function()
  308. TweenService:Create(
  309. OkayBtn,
  310. TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  311. {BackgroundColor3 = Color3.fromRGB(37,37,37)}
  312. ):Play()
  313. end)
  314.  
  315. OkayBtn.MouseLeave:Connect(function()
  316. TweenService:Create(
  317. OkayBtn,
  318. TweenInfo.new(.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  319. {BackgroundColor3 = Color3.fromRGB(34, 34, 34)}
  320. ):Play()
  321. end)
  322.  
  323. OkayBtn.MouseButton1Click:Connect(function()
  324. NotificationFrame:TweenSize(UDim2.new(0, 0,0, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
  325.  
  326. wait(0.4)
  327.  
  328. TweenService:Create(
  329. NotificationHold,
  330. TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  331. {BackgroundTransparency = 1}
  332. ):Play()
  333.  
  334. wait(.3)
  335.  
  336. NotificationHold:Destroy()
  337. end)
  338. end
  339.  
  340. coroutine.wrap(
  341. function()
  342. while wait() do
  343. end
  344. end
  345. )()
  346. local Tabs = {}
  347. function Tabs:Tab(text)
  348. local Tab = Instance.new("TextButton")
  349. local TabCorner = Instance.new("UICorner")
  350. local Title = Instance.new("TextLabel")
  351. local UIGradient = Instance.new('UIGradient')
  352. Tab.Name = "Tab"
  353. Tab.Parent = TabHolder
  354. Tab.BackgroundColor3 = Color3.fromRGB(255,255,255)
  355. Tab.Size = UDim2.new(0, 170, 0, 35)
  356. Tab.AutoButtonColor = false
  357. Tab.Font = Enum.Font.SourceSans
  358. Tab.Text = ""
  359. Tab.TextColor3 = Color3.fromRGB(0, 0, 0)
  360. Tab.TextSize = 15.000
  361. Tab.BackgroundTransparency = 1
  362.  
  363. UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(121,9,112
  364. )), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(27,50,255))}
  365. UIGradient.Parent = Tab
  366.  
  367.  
  368. TabCorner.CornerRadius = UDim.new(0, 3)
  369. TabCorner.Name = "TabCorner"
  370. TabCorner.Parent = Tab
  371.  
  372. Title.Name = "Title"
  373. Title.Parent = Tab
  374. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  375. Title.BackgroundTransparency = 1.000
  376. Title.Position = UDim2.new(0.0566037744, 0, 0.1, 0)
  377. Title.Size = UDim2.new(0, 150, 0, 29)
  378. Title.Font = Enum.Font.Gotham
  379. Title.Text = text
  380. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  381. Title.TextSize = 17.000
  382. Title.TextXAlignment = Enum.TextXAlignment.Left
  383.  
  384. local Container = Instance.new("ScrollingFrame")
  385. local ContainerLayout = Instance.new("UIListLayout")
  386.  
  387. Container.Name = "Container"
  388. Container.Parent = ContainerHold
  389. Container.Active = true
  390. Container.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  391. Container.BackgroundTransparency = 1.000
  392. Container.BorderSizePixel = 0
  393. Container.Position = UDim2.new(0.34, 0, 0.0506329127, 0)
  394. Container.Size = UDim2.new(0, 420, 0, 450)
  395. Container.ScrollBarThickness = 5
  396. Container.CanvasSize = UDim2.new(0, 0, 0, 0)
  397. Container.Visible = false
  398. Container.ScrollBarImageColor3 = Color3.fromRGB(100, 100, 100)
  399.  
  400. ContainerLayout.Name = "ContainerLayout"
  401. ContainerLayout.Parent = Container
  402. ContainerLayout.SortOrder = Enum.SortOrder.LayoutOrder
  403. ContainerLayout.Padding = UDim.new(0, 15)
  404.  
  405. if FirstTab == false then
  406. FirstTab = true
  407. Tab.BackgroundTransparency = 0
  408. Container.Visible = true
  409. end
  410. Tab.MouseButton1Click:Connect(
  411. function()
  412. for i, v in next, ContainerHold:GetChildren() do
  413. if v.Name == "Container" then
  414. v.Visible = false
  415. end
  416. end
  417.  
  418. for i, v in next, TabHolder:GetChildren() do
  419. if v.ClassName == "TextButton" then
  420. TweenService:Create(
  421. v,
  422. TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  423. {BackgroundTransparency = 1}
  424. ):Play()
  425. TweenService:Create(
  426. Tab,
  427. TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  428. {BackgroundTransparency = 0}
  429. ):Play()
  430. end
  431. end
  432. Container.Visible = true
  433. end
  434. )
  435. local ContainerItems = {}
  436. function ContainerItems:Button(text, callback)
  437. local Button = Instance.new("TextButton")
  438. local ButtonCorner = Instance.new("UICorner")
  439.  
  440. Button.Name = "Button"
  441. Button.Parent = Container
  442. Button.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  443. Button.Size = UDim2.new(0, 405, 0, 40)
  444. Button.AutoButtonColor = false
  445. Button.Font = Enum.Font.Gotham
  446. Button.TextColor3 = Color3.fromRGB(255, 255, 255)
  447. Button.TextSize = 15.000
  448. Button.Text = text
  449.  
  450. ButtonCorner.CornerRadius = UDim.new(0, 5)
  451. ButtonCorner.Name = "ButtonCorner"
  452. ButtonCorner.Parent = Button
  453.  
  454. Button.MouseEnter:Connect(
  455. function()
  456. TweenService:Create(
  457. Button,
  458. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  459. {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
  460. ):Play()
  461. end
  462. )
  463. Button.MouseLeave:Connect(
  464. function()
  465. TweenService:Create(
  466. Button,
  467. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  468. {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
  469. ):Play()
  470. end
  471. )
  472.  
  473. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  474.  
  475. Button.MouseButton1Click:Connect(
  476. function()
  477. pcall(callback)
  478. Button.TextSize = 0
  479. TweenService:Create(Button, TweenInfo.new(.2, Enum.EasingStyle.Quad), {TextSize = 17}):Play()
  480. wait(.2)
  481. TweenService:Create(Button, TweenInfo.new(.2, Enum.EasingStyle.Quad), {TextSize = 14}):Play()
  482. end
  483. )
  484. end
  485. function ContainerItems:Toggle(text,Default,callback)
  486. local Toggled = Default or false
  487. local ValueToggle = ValueTogglea or false
  488. local Toggle = Instance.new("TextButton")
  489. local ToggleCorner = Instance.new("UICorner")
  490. local Title = Instance.new("TextLabel")
  491. local ToggleFrame = Instance.new("Frame")
  492. local ToggleFrameCorner = Instance.new("UICorner")
  493. local ToggleFrameRainbow = Instance.new("Frame")
  494. local ToggleFrameRainbowCorner = Instance.new("UICorner")
  495. local ToggleDot = Instance.new("Frame")
  496. local ToggleDotCorner = Instance.new("UICorner")
  497. local UIGradient_2 = Instance.new('UIGradient')
  498. Toggle.Name = "Toggle"
  499. Toggle.Parent = Container
  500. Toggle.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  501. Toggle.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  502. Toggle.Size = UDim2.new(0, 405, 0, 40)
  503. Toggle.AutoButtonColor = false
  504. Toggle.Font = Enum.Font.Gotham
  505. Toggle.Text = ""
  506. Toggle.TextColor3 = Color3.fromRGB(255, 255, 255)
  507. Toggle.TextSize = 14.000
  508.  
  509. ToggleCorner.CornerRadius = UDim.new(0, 5)
  510. ToggleCorner.Name = "ToggleCorner"
  511. ToggleCorner.Parent = Toggle
  512.  
  513. Title.Name = "Title"
  514. Title.Parent = Toggle
  515. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  516. Title.BackgroundTransparency = 1.000
  517. Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  518. Title.Size = UDim2.new(0, 430, 0, 40)
  519. Title.Font = Enum.Font.Gotham
  520. Title.Text = text
  521. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  522. Title.TextSize = 15.000
  523. Title.TextXAlignment = Enum.TextXAlignment.Left
  524.  
  525. ToggleFrame.Name = "ToggleFrame"
  526. ToggleFrame.Parent = Toggle
  527. ToggleFrame.BackgroundColor3 = Color3.fromRGB(22, 23, 27)
  528. ToggleFrame.Position = UDim2.new(0.88, 0, 0.21, 0)
  529. ToggleFrame.Size = UDim2.new(0, 40, 0, 22)
  530.  
  531. ToggleFrameCorner.CornerRadius = UDim.new(1, 0)
  532. ToggleFrameCorner.Name = "ToggleFrameCorner"
  533. ToggleFrameCorner.Parent = ToggleFrame
  534.  
  535. ToggleFrameRainbow.Name = "ToggleFrameRainbow"
  536. ToggleFrameRainbow.Parent = ToggleFrame
  537. ToggleFrameRainbow.BackgroundColor3 = Color3.fromRGB(27,27,27)
  538. ToggleFrameRainbow.BackgroundTransparency = 1.000
  539. ToggleFrameRainbow.Position = UDim2.new(-0.0198377371, 0, 0.00601506233, 0)
  540. ToggleFrameRainbow.Size = UDim2.new(0, 40, 0, 22)
  541.  
  542. ToggleFrameRainbowCorner.CornerRadius = UDim.new(1, 0)
  543. ToggleFrameRainbowCorner.Name = "ToggleFrameRainbowCorner"
  544. ToggleFrameRainbowCorner.Parent = ToggleFrameRainbow
  545.  
  546. ToggleDot.Name = "ToggleDot"
  547. ToggleDot.Parent = ToggleFrameRainbow
  548. ToggleDot.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  549. ToggleDot.Position = UDim2.new(0.104999997, -3, 0.289000005, -4)
  550. ToggleDot.Size = UDim2.new(0, 16, 0, 16)
  551.  
  552. UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
  553. UIGradient_2.Parent = ToggleDot
  554.  
  555. ToggleDotCorner.CornerRadius = UDim.new(1, 0)
  556. ToggleDotCorner.Name = "ToggleDotCorner"
  557. ToggleDotCorner.Parent = ToggleDot
  558.  
  559. Toggle.MouseEnter:Connect(
  560. function()
  561. TweenService:Create(
  562. Toggle,
  563. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  564. {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
  565. ):Play()
  566.  
  567. end
  568. )
  569. Toggle.MouseLeave:Connect(
  570. function()
  571. TweenService:Create(
  572. Toggle,
  573. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  574. {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
  575. ):Play()
  576. end
  577. )
  578.  
  579. if Toggled == true then
  580. UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
  581.  
  582. TweenService:Create(
  583. ToggleFrameRainbow,
  584. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  585. {BackgroundTransparency = 0}
  586. ):Play()
  587. TweenService:Create(
  588. ToggleDot,
  589. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  590. {Position = UDim2.new(0.595, -3, 0.289000005, -4)}
  591. ):Play()
  592. pcall(callback, Toggled)
  593. else
  594. ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(46, 255, 255)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(228, 92, 255))}
  595.  
  596. TweenService:Create(
  597. ToggleFrameRainbow,
  598. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  599. {BackgroundTransparency = 1}
  600. ):Play()
  601. TweenService:Create(
  602. ToggleDot,
  603. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  604. {Position = UDim2.new(0.104999997, -3, 0.289000005, -4)}
  605. ):Play()
  606. end
  607.  
  608. Toggle.MouseButton1Click:Connect(
  609. function()
  610. if Toggled == false then
  611. UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
  612.  
  613. TweenService:Create(
  614. ToggleFrameRainbow,
  615. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  616. {BackgroundTransparency = 0}
  617. ):Play()
  618. TweenService:Create(
  619. ToggleDot,
  620. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  621. {Position = UDim2.new(0.595, -3, 0.289000005, -4)}
  622. ):Play()
  623. else
  624. UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
  625.  
  626. TweenService:Create(
  627. ToggleFrameRainbow,
  628. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  629. {BackgroundTransparency = 1}
  630. ):Play()
  631. TweenService:Create(
  632. ToggleDot,
  633. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  634. {Position = UDim2.new(0.104999997, -3, 0.289000005, -4)}
  635. ):Play()
  636. end
  637. Toggled = not Toggled
  638. pcall(callback, Toggled)
  639. end
  640. )
  641.  
  642. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  643. end
  644. function ContainerItems:Slider(text, min, max, start, callback)
  645. local dragging = false
  646. local Slider = Instance.new("TextButton")
  647. local Title = Instance.new("TextLabel")
  648. local SliderFrame = Instance.new("Frame")
  649. local SliderFrameCorner = Instance.new("UICorner")
  650. local SliderIndicator = Instance.new("Frame")
  651. local SliderIndicatorCorner = Instance.new("UICorner")
  652. local SliderCorner = Instance.new("UICorner")
  653. local Value = Instance.new("TextLabel")
  654. local UIGradient_3 = Instance.new('UIGradient')
  655.  
  656. Slider.Name = "Slider"
  657. Slider.Parent = Container
  658. Slider.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  659. Slider.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  660. Slider.Size = UDim2.new(0, 405, 0, 49)
  661. Slider.AutoButtonColor = false
  662. Slider.Font = Enum.Font.Gotham
  663. Slider.Text = ""
  664. Slider.TextColor3 = Color3.fromRGB(255, 255, 255)
  665. Slider.TextSize = 14.000
  666.  
  667. Title.Name = "Title"
  668. Title.Parent = Slider
  669. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  670. Title.BackgroundTransparency = 1.000
  671. Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  672. Title.Size = UDim2.new(0, 192, 0, 28)
  673. Title.Font = Enum.Font.Gotham
  674. Title.Text = text
  675. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  676. Title.TextSize = 14.000
  677. Title.TextXAlignment = Enum.TextXAlignment.Left
  678.  
  679. SliderFrame.Name = "SliderFrame"
  680. SliderFrame.Parent = Slider
  681. SliderFrame.BackgroundColor3 = Color3.fromRGB(29, 29, 29)
  682. SliderFrame.Position = UDim2.new(0.0223324299, 0, 0.563266039, 0)
  683. SliderFrame.Size = UDim2.new(0, 384, 0, 11)
  684.  
  685. SliderFrameCorner.Name = "SliderFrameCorner"
  686. SliderFrameCorner.Parent = SliderFrame
  687.  
  688. SliderIndicator.Name = "SliderIndicator"
  689. SliderIndicator.Parent = SliderFrame
  690. SliderIndicator.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  691. SliderIndicator.BorderSizePixel = 0
  692. SliderIndicator.Position = UDim2.new(-0.00260408712, 0, 0.0363603085, 0)
  693. SliderIndicator.Size = UDim2.new((start or 0) / max, 0, 0, 11)
  694.  
  695. UIGradient_3.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
  696. UIGradient_3.Parent = SliderIndicator
  697.  
  698. SliderIndicatorCorner.Name = "SliderIndicatorCorner"
  699. SliderIndicatorCorner.Parent = SliderIndicator
  700.  
  701. SliderCorner.CornerRadius = UDim.new(0, 6)
  702. SliderCorner.Name = "SliderCorner"
  703. SliderCorner.Parent = Slider
  704.  
  705. Value.Name = "Value"
  706. Value.Parent = Slider
  707. Value.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  708. Value.BackgroundTransparency = 1.000
  709. Value.Position = UDim2.new(0.496277869, 0, 0, 0)
  710. Value.Size = UDim2.new(0, 192, 0, 28)
  711. Value.Font = Enum.Font.Gotham
  712. Value.Text = tostring(start and math.floor((start / max) * (max - min) + min) or 0)
  713. Value.TextColor3 = Color3.fromRGB(255, 255, 255)
  714. Value.TextSize = 14.000
  715. Value.TextXAlignment = Enum.TextXAlignment.Right
  716.  
  717. local function slide(input)
  718. local pos =
  719. UDim2.new(
  720. math.clamp((input.Position.X - SliderFrame.AbsolutePosition.X) / SliderFrame.AbsoluteSize.X, 0, 1),
  721. 0,
  722. 0,
  723. 11
  724. )
  725. SliderIndicator:TweenSize(pos, Enum.EasingDirection.Out, Enum.EasingStyle.Quart, 0.3, true)
  726. local val = math.floor(((pos.X.Scale * max) / max) * (max - min) + min)
  727. Value.Text = tostring(val)
  728. pcall(callback, val)
  729. end
  730.  
  731. SliderFrame.InputBegan:Connect(
  732. function(input)
  733. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  734. slide(input)
  735. dragging = true
  736. end
  737. end
  738. )
  739.  
  740. SliderFrame.InputEnded:Connect(
  741. function(input)
  742. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  743. dragging = false
  744. end
  745. end
  746. )
  747.  
  748. UserInputService.InputChanged:Connect(
  749. function(input)
  750. if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then
  751. slide(input)
  752. end
  753. end
  754. )
  755.  
  756. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  757.  
  758. end
  759. function ContainerItems:Dropdown(text, list, callback)
  760. local dropfunc = {}
  761. local DropToggled = false
  762. local FrameSize = 0
  763. local ItemCount = 0
  764.  
  765. local Dropdown = Instance.new("TextButton")
  766. local Title = Instance.new("TextLabel")
  767. local DropdownCorner = Instance.new("UICorner")
  768. local Arrow = Instance.new("ImageLabel")
  769.  
  770. Dropdown.Name = "Dropdown"
  771. Dropdown.Parent = Container
  772. Dropdown.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  773. Dropdown.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  774. Dropdown.Size = UDim2.new(0, 405, 0, 45)
  775. Dropdown.AutoButtonColor = false
  776. Dropdown.Font = Enum.Font.Gotham
  777. Dropdown.Text = ""
  778. Dropdown.TextColor3 = Color3.fromRGB(255, 255, 255)
  779. Dropdown.TextSize = 15.000
  780.  
  781. Title.Name = "Title"
  782. Title.Parent = Dropdown
  783. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  784. Title.BackgroundTransparency = 1.000
  785. Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  786. Title.Size = UDim2.new(0, 192, 0, 40)
  787. Title.Font = Enum.Font.Gotham
  788. Title.Text = text
  789. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  790. Title.TextSize = 15.000
  791. Title.TextXAlignment = Enum.TextXAlignment.Left
  792.  
  793. DropdownCorner.CornerRadius = UDim.new(0, 6)
  794. DropdownCorner.Name = "DropdownCorner"
  795. DropdownCorner.Parent = Dropdown
  796.  
  797. Arrow.Name = "Arrow"
  798. Arrow.Parent = Dropdown
  799. Arrow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  800. Arrow.BackgroundTransparency = 1.000
  801. Arrow.Position = UDim2.new(0.9, 0, 0.2, 0)
  802. Arrow.Size = UDim2.new(0, 27, 0, 27)
  803. Arrow.Image = "http://www.roblox.com/asset/?id=6034818372"
  804.  
  805. local DropdownFrame = Instance.new("Frame")
  806. local DropdownFrameCorner = Instance.new("UICorner")
  807. local DropdownHolder = Instance.new("ScrollingFrame")
  808. local DropdownItemLayout = Instance.new("UIListLayout")
  809. local DropdownItemHolder = Instance.new("UIPadding")
  810.  
  811. DropdownFrame.Name = "DropdownFrame"
  812. DropdownFrame.Parent = Container
  813. DropdownFrame.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  814. DropdownFrame.BorderSizePixel = 0
  815. DropdownFrame.Position = UDim2.new(0.334374994, 0, 0.604166687, 0)
  816. DropdownFrame.Size = UDim2.new(0, 403, 0, 0)
  817. DropdownFrame.Visible = false
  818.  
  819. DropdownFrameCorner.Name = "DropdownFrameCorner"
  820. DropdownFrameCorner.Parent = DropdownFrame
  821.  
  822. DropdownHolder.Name = "DropdownHolder"
  823. DropdownHolder.Parent = DropdownFrame
  824. DropdownHolder.Active = true
  825. DropdownHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  826. DropdownHolder.BackgroundTransparency = 1.000
  827. DropdownHolder.BorderSizePixel = 0
  828. DropdownHolder.Position = UDim2.new(0.0263156947, 0, 0.00326599111, 0)
  829. DropdownHolder.Size = UDim2.new(0, 386, 0, 0)
  830. DropdownHolder.ScrollBarThickness = 3
  831. DropdownHolder.CanvasSize = UDim2.new(0, 0, 0, 0)
  832. DropdownHolder.ScrollBarImageColor3 = Color3.fromRGB(48, 48, 48)
  833.  
  834. DropdownItemLayout.Name = "DropdownItemLayout"
  835. DropdownItemLayout.Parent = DropdownHolder
  836. DropdownItemLayout.SortOrder = Enum.SortOrder.LayoutOrder
  837. DropdownItemLayout.Padding = UDim.new(0, 5)
  838.  
  839. DropdownItemHolder.Name = "DropdownItemHolder"
  840. DropdownItemHolder.Parent = DropdownHolder
  841. DropdownItemHolder.PaddingBottom = UDim.new(0, 5)
  842. DropdownItemHolder.PaddingTop = UDim.new(0, 5)
  843.  
  844. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  845.  
  846. Dropdown.MouseEnter:Connect(
  847. function()
  848. TweenService:Create(
  849. Dropdown,
  850. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  851. {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
  852. ):Play()
  853. end
  854. )
  855. Dropdown.MouseLeave:Connect(
  856. function()
  857. TweenService:Create(
  858. Dropdown,
  859. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  860. {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
  861. ):Play()
  862. end
  863. )
  864.  
  865. Dropdown.MouseButton1Click:Connect(
  866. function()
  867. if DropToggled == false then
  868. DropdownFrame.Visible = true
  869. DropdownFrame:TweenSize(
  870. UDim2.new(0, 403, 0, FrameSize),
  871. Enum.EasingDirection.Out,
  872. Enum.EasingStyle.Quart,
  873. 0.1,
  874. true
  875. )
  876. DropdownHolder:TweenSize(
  877. UDim2.new(0, 386, 0, FrameSize),
  878. Enum.EasingDirection.Out,
  879. Enum.EasingStyle.Quart,
  880. 0.1,
  881. true
  882. )
  883. TweenService:Create(
  884. Arrow,
  885. TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  886. {Rotation = 180}
  887. ):Play()
  888. repeat
  889. wait()
  890. until DropdownFrame.Size == UDim2.new(0, 403, 0, FrameSize)
  891. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  892. else
  893. DropdownFrame:TweenSize(
  894. UDim2.new(0, 403, 0, 0),
  895. Enum.EasingDirection.Out,
  896. Enum.EasingStyle.Quart,
  897. 0.1,
  898. true
  899. )
  900. DropdownHolder:TweenSize(
  901. UDim2.new(0, 386, 0, 0),
  902. Enum.EasingDirection.Out,
  903. Enum.EasingStyle.Quart,
  904. 0.1,
  905. true
  906. )
  907. TweenService:Create(
  908. Arrow,
  909. TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  910. {Rotation = 0}
  911. ):Play()
  912. repeat
  913. wait()
  914. until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
  915. DropdownFrame.Visible = false
  916. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  917. end
  918. DropToggled = not DropToggled
  919. end
  920. )
  921.  
  922. for i, v in next, list do
  923. ItemCount = ItemCount + 1
  924.  
  925. if ItemCount == 1 then
  926. FrameSize = 39
  927. elseif ItemCount == 2 then
  928. FrameSize = 69
  929. elseif ItemCount >= 3 then
  930. FrameSize = 100
  931. end
  932.  
  933. local Item = Instance.new("TextButton")
  934. local ItemCorner = Instance.new("UICorner")
  935.  
  936. Item.Name = "Item"
  937. Item.Parent = DropdownHolder
  938. Item.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  939. Item.Position = UDim2.new(0, 0, 0.0808080807, 0)
  940. Item.Size = UDim2.new(0, 405, 0, 24)
  941. Item.AutoButtonColor = false
  942. Item.Font = Enum.Font.Gotham
  943. Item.TextColor3 = Color3.fromRGB(255, 255, 255)
  944. Item.TextSize = 14.000
  945. Item.Text = v
  946.  
  947. ItemCorner.Name = "ItemCorner"
  948. ItemCorner.Parent = Item
  949.  
  950. Item.MouseEnter:Connect(
  951. function()
  952. TweenService:Create(
  953. Item,
  954. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  955. {BackgroundColor3 = Color3.fromRGB(37, 37, 37)}
  956. ):Play()
  957. end
  958. )
  959. Item.MouseLeave:Connect(
  960. function()
  961. TweenService:Create(
  962. Item,
  963. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  964. {BackgroundColor3 = Color3.fromRGB(32, 32, 32)}
  965. ):Play()
  966. end
  967. )
  968.  
  969. Item.MouseButton1Click:Connect(
  970. function()
  971. Title.Text = text .. " - " .. v
  972. pcall(callback, v)
  973. DropToggled = false
  974. DropdownFrame:TweenSize(
  975. UDim2.new(0, 403, 0, 0),
  976. Enum.EasingDirection.Out,
  977. Enum.EasingStyle.Quart,
  978. 0.1,
  979. true
  980. )
  981. DropdownHolder:TweenSize(
  982. UDim2.new(0, 386, 0, 0),
  983. Enum.EasingDirection.Out,
  984. Enum.EasingStyle.Quart,
  985. 0.1,
  986. true
  987. )
  988. TweenService:Create(
  989. Arrow,
  990. TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  991. {Rotation = 0}
  992. ):Play()
  993. repeat
  994. wait()
  995. until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
  996. DropdownFrame.Visible = false
  997. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  998. end
  999. )
  1000.  
  1001. DropdownHolder.CanvasSize = UDim2.new(0, 0, 0, DropdownItemLayout.AbsoluteContentSize.Y + 15)
  1002. end
  1003.  
  1004. function dropfunc:Clear()
  1005. Title.Text = text
  1006. FrameSize = 0
  1007. ItemCount = 0
  1008.  
  1009. for i,v in next, DropdownHolder:GetChildren() do
  1010. if v.Name == "Item" then
  1011. v:Destroy()
  1012. end
  1013. end
  1014.  
  1015. DropdownFrame:TweenSize(
  1016. UDim2.new(0, 403, 0, 0),
  1017. Enum.EasingDirection.Out,
  1018. Enum.EasingStyle.Quart,
  1019. 0.1,
  1020. true
  1021. )
  1022. DropdownHolder:TweenSize(
  1023. UDim2.new(0, 386, 0, 0),
  1024. Enum.EasingDirection.Out,
  1025. Enum.EasingStyle.Quart,
  1026. 0.1,
  1027. true
  1028. )
  1029. TweenService:Create(
  1030. Arrow,
  1031. TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1032. {Rotation = 0}
  1033. ):Play()
  1034. repeat
  1035. wait()
  1036. until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
  1037. DropdownFrame.Visible = false
  1038. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1039. end
  1040.  
  1041. function dropfunc:Add(toadd)
  1042. ItemCount = ItemCount + 1
  1043.  
  1044. if ItemCount == 1 then
  1045. FrameSize = 39
  1046. elseif ItemCount == 2 then
  1047. FrameSize = 69
  1048. elseif ItemCount >= 3 then
  1049. FrameSize = 100
  1050. end
  1051.  
  1052. local Item = Instance.new("TextButton")
  1053. local ItemCorner = Instance.new("UICorner")
  1054.  
  1055. Item.Name = "Item"
  1056. Item.Parent = DropdownHolder
  1057. Item.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  1058. Item.Position = UDim2.new(0, 0, 0.0808080807, 0)
  1059. Item.Size = UDim2.new(0, 405, 0, 24)
  1060. Item.AutoButtonColor = false
  1061. Item.Font = Enum.Font.Gotham
  1062. Item.TextColor3 = Color3.fromRGB(255, 255, 255)
  1063. Item.TextSize = 14.000
  1064. Item.Text = toadd
  1065.  
  1066. ItemCorner.Name = "ItemCorner"
  1067. ItemCorner.Parent = Item
  1068.  
  1069. Item.MouseEnter:Connect(
  1070. function()
  1071. TweenService:Create(
  1072. Item,
  1073. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1074. {BackgroundColor3 = Color3.fromRGB(37, 37, 37)}
  1075. ):Play()
  1076. end
  1077. )
  1078. Item.MouseLeave:Connect(
  1079. function()
  1080. TweenService:Create(
  1081. Item,
  1082. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1083. {BackgroundColor3 = Color3.fromRGB(32, 32, 32)}
  1084. ):Play()
  1085. end
  1086. )
  1087.  
  1088. Item.MouseButton1Click:Connect(
  1089. function()
  1090. Title.Text = text .. " - " .. toadd
  1091. pcall(callback, toadd)
  1092. DropToggled = false
  1093. DropdownFrame:TweenSize(
  1094. UDim2.new(0, 403, 0, 0),
  1095. Enum.EasingDirection.Out,
  1096. Enum.EasingStyle.Quart,
  1097. 0.1,
  1098. true
  1099. )
  1100. DropdownHolder:TweenSize(
  1101. UDim2.new(0, 386, 0, 0),
  1102. Enum.EasingDirection.Out,
  1103. Enum.EasingStyle.Quart,
  1104. 0.1,
  1105. true
  1106. )
  1107. TweenService:Create(
  1108. Arrow,
  1109. TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1110. {Rotation = 0}
  1111. ):Play()
  1112. repeat
  1113. wait()
  1114. until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
  1115. DropdownFrame.Visible = false
  1116. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1117. end
  1118. )
  1119.  
  1120. DropdownHolder.CanvasSize = UDim2.new(0, 0, 0, DropdownItemLayout.AbsoluteContentSize.Y + 15)
  1121. end
  1122.  
  1123. return dropfunc
  1124. end
  1125. function ContainerItems:Colorpicker(text, preset, callback)
  1126. local ColorPickerToggled = false
  1127. local OldToggleColor = Color3.fromRGB(0, 0, 0)
  1128. local OldColor = Color3.fromRGB(0, 0, 0)
  1129. local OldColorSelectionPosition = nil
  1130. local OldHueSelectionPosition = nil
  1131. local ColorH, ColorS, ColorV = 1, 1, 1
  1132. local RainbowColorPicker = false
  1133. local ColorPickerInput = nil
  1134. local ColorInput = nil
  1135. local HueInput = nil
  1136.  
  1137. local Colorpicker = Instance.new("TextButton")
  1138. local Title = Instance.new("TextLabel")
  1139. local BoxColor = Instance.new("Frame")
  1140. local BoxcolorCorner = Instance.new("UICorner")
  1141. local ColorpickerCorner = Instance.new("UICorner")
  1142.  
  1143. Colorpicker.Name = "Colorpicker"
  1144. Colorpicker.Parent = Container
  1145. Colorpicker.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  1146. Colorpicker.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  1147. Colorpicker.Size = UDim2.new(0, 405, 0, 40)
  1148. Colorpicker.AutoButtonColor = false
  1149. Colorpicker.Font = Enum.Font.Gotham
  1150. Colorpicker.Text = ""
  1151. Colorpicker.TextColor3 = Color3.fromRGB(255, 255, 255)
  1152. Colorpicker.TextSize = 14.000
  1153.  
  1154. Title.Name = "Title"
  1155. Title.Parent = Colorpicker
  1156. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1157. Title.BackgroundTransparency = 1.000
  1158. Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  1159. Title.Size = UDim2.new(0, 405, 0, 40)
  1160. Title.Font = Enum.Font.Gotham
  1161. Title.Text = text
  1162. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1163. Title.TextSize = 15.000
  1164. Title.TextXAlignment = Enum.TextXAlignment.Left
  1165.  
  1166. BoxColor.Name = "Boxcolor"
  1167. BoxColor.Parent = Colorpicker
  1168. BoxColor.BackgroundColor3 = preset
  1169. BoxColor.Position = UDim2.new(0.88, 0, 0.3, 0)
  1170. BoxColor.Size = UDim2.new(0, 36, 0, 19)
  1171.  
  1172. BoxcolorCorner.CornerRadius = UDim.new(0, 6)
  1173. BoxcolorCorner.Name = "BoxcolorCorner"
  1174. BoxcolorCorner.Parent = BoxColor
  1175.  
  1176. ColorpickerCorner.CornerRadius = UDim.new(0, 4)
  1177. ColorpickerCorner.Name = "ColorpickerCorner"
  1178. ColorpickerCorner.Parent = Colorpicker
  1179.  
  1180. local ColorpickerFrame = Instance.new("Frame")
  1181. local DropdownFrameCorner = Instance.new("UICorner")
  1182. local Hue = Instance.new("ImageLabel")
  1183. local HueCorner = Instance.new("UICorner")
  1184. local HueGradient = Instance.new("UIGradient")
  1185. local HueSelection = Instance.new("ImageLabel")
  1186. local Color = Instance.new("ImageLabel")
  1187. local ColorCorner = Instance.new("UICorner")
  1188. local ColorSelection = Instance.new("ImageLabel")
  1189. local Confirm = Instance.new("TextButton")
  1190. local ButtonCorner = Instance.new("UICorner")
  1191. local RainbowToggle = Instance.new("TextButton")
  1192. local RainbowToggleCorner = Instance.new("UICorner")
  1193. local RainbowTitle = Instance.new("TextLabel")
  1194. local RainbowToggleFrame = Instance.new("Frame")
  1195. local RainbowToggleFrameCorner = Instance.new("UICorner")
  1196. local RainbowToggleFrameRainbow = Instance.new("Frame")
  1197. local RainbowToggleFrameRainbowCorner = Instance.new("UICorner")
  1198. local RainbowToggleDot = Instance.new("Frame")
  1199. local RainbowToggleDotCorner = Instance.new("UICorner")
  1200.  
  1201. ColorpickerFrame.Name = "ColorpickerFrame"
  1202. ColorpickerFrame.Parent = Container
  1203. ColorpickerFrame.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  1204. ColorpickerFrame.BorderSizePixel = 0
  1205. ColorpickerFrame.Position = UDim2.new(0.165624991, 0, 0.671052635, 0)
  1206. ColorpickerFrame.Size = UDim2.new(0, 403, 0, 0)
  1207. ColorpickerFrame.Visible = false
  1208. ColorpickerFrame.ClipsDescendants = true
  1209.  
  1210. DropdownFrameCorner.Name = "DropdownFrameCorner"
  1211. DropdownFrameCorner.Parent = ColorpickerFrame
  1212.  
  1213. Hue.Name = "Hue"
  1214. Hue.Parent = ColorpickerFrame
  1215. Hue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1216. Hue.Position = UDim2.new(0, 209, 0, 9)
  1217. Hue.Size = UDim2.new(0, 25, 0, 80)
  1218.  
  1219. HueCorner.CornerRadius = UDim.new(0, 3)
  1220. HueCorner.Name = "HueCorner"
  1221. HueCorner.Parent = Hue
  1222.  
  1223. HueGradient.Color =
  1224. ColorSequence.new {
  1225. ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 0, 4)),
  1226. ColorSequenceKeypoint.new(0.20, Color3.fromRGB(234, 255, 0)),
  1227. ColorSequenceKeypoint.new(0.40, Color3.fromRGB(21, 255, 0)),
  1228. ColorSequenceKeypoint.new(0.60, Color3.fromRGB(0, 255, 255)),
  1229. ColorSequenceKeypoint.new(0.80, Color3.fromRGB(0, 17, 255)),
  1230. ColorSequenceKeypoint.new(0.90, Color3.fromRGB(255, 0, 251)),
  1231. ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 0, 4))
  1232. }
  1233. HueGradient.Rotation = 270
  1234. HueGradient.Name = "HueGradient"
  1235. HueGradient.Parent = Hue
  1236.  
  1237. HueSelection.Name = "HueSelection"
  1238. HueSelection.Parent = Hue
  1239. HueSelection.AnchorPoint = Vector2.new(0.5, 0.5)
  1240. HueSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1241. HueSelection.BackgroundTransparency = 1.000
  1242. HueSelection.Position = UDim2.new(0.48, 0, 1 - select(1, Color3.toHSV(preset)))
  1243. HueSelection.Size = UDim2.new(0, 18, 0, 18)
  1244. HueSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
  1245.  
  1246. Color.Name = "Color"
  1247. Color.Parent = ColorpickerFrame
  1248. Color.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  1249. Color.Position = UDim2.new(0, 9, 0, 9)
  1250. Color.Size = UDim2.new(0, 194, 0, 80)
  1251. Color.ZIndex = 10
  1252. Color.Image = "rbxassetid://4155801252"
  1253.  
  1254. ColorCorner.CornerRadius = UDim.new(0, 3)
  1255. ColorCorner.Name = "ColorCorner"
  1256. ColorCorner.Parent = Color
  1257.  
  1258. ColorSelection.Name = "ColorSelection"
  1259. ColorSelection.Parent = Color
  1260. ColorSelection.AnchorPoint = Vector2.new(0.5, 0.5)
  1261. ColorSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1262. ColorSelection.BackgroundTransparency = 1.000
  1263. ColorSelection.Position = UDim2.new(preset and select(3, Color3.toHSV(preset)))
  1264. ColorSelection.Size = UDim2.new(0, 18, 0, 18)
  1265. ColorSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
  1266. ColorSelection.ScaleType = Enum.ScaleType.Fit
  1267.  
  1268. Confirm.Name = "Confirm"
  1269. Confirm.Parent = ColorpickerFrame
  1270. Confirm.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  1271. Confirm.BackgroundTransparency = 0.010
  1272. Confirm.Position = UDim2.new(0.612244904, 0, 0.0900000036, 0)
  1273. Confirm.Size = UDim2.new(0, 145, 0, 27)
  1274. Confirm.AutoButtonColor = false
  1275. Confirm.Font = Enum.Font.Gotham
  1276. Confirm.Text = "Confirm"
  1277. Confirm.TextColor3 = Color3.fromRGB(255, 255, 255)
  1278. Confirm.TextSize = 14.000
  1279.  
  1280. ButtonCorner.Name = "ButtonCorner"
  1281. ButtonCorner.Parent = Confirm
  1282.  
  1283. RainbowToggle.Name = "RainbowToggle"
  1284. RainbowToggle.Parent = ColorpickerFrame
  1285. RainbowToggle.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
  1286. RainbowToggle.Position = UDim2.new(0.610732794, 0, 0.431324542, 0)
  1287. RainbowToggle.Size = UDim2.new(0, 145, 0, 27)
  1288. RainbowToggle.AutoButtonColor = false
  1289. RainbowToggle.Font = Enum.Font.Gotham
  1290. RainbowToggle.Text = ""
  1291. RainbowToggle.TextColor3 = Color3.fromRGB(255, 255, 255)
  1292. RainbowToggle.TextSize = 14.000
  1293.  
  1294. RainbowToggleCorner.Name = "RainbowToggleCorner"
  1295. RainbowToggleCorner.Parent = RainbowToggle
  1296.  
  1297. RainbowTitle.Name = "RainbowTitle"
  1298. RainbowTitle.Parent = RainbowToggle
  1299. RainbowTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1300. RainbowTitle.BackgroundTransparency = 1.000
  1301. RainbowTitle.Position = UDim2.new(0.0204080511, 0, 0, 0)
  1302. RainbowTitle.Size = UDim2.new(0, 29, 0, 27)
  1303. RainbowTitle.Font = Enum.Font.Gotham
  1304. RainbowTitle.Text = "Rainbow"
  1305. RainbowTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  1306. RainbowTitle.TextSize = 14.000
  1307. RainbowTitle.TextXAlignment = Enum.TextXAlignment.Left
  1308.  
  1309. RainbowToggleFrame.Name = "RainbowToggleFrame"
  1310. RainbowToggleFrame.Parent = RainbowToggle
  1311. RainbowToggleFrame.BackgroundColor3 = Color3.fromRGB(22, 23, 27)
  1312. RainbowToggleFrame.Position = UDim2.new(0.693, 0, 0.142857149, 0)
  1313. RainbowToggleFrame.Size = UDim2.new(0, 36, 0, 19)
  1314.  
  1315. RainbowToggleFrameCorner.CornerRadius = UDim.new(1, 0)
  1316. RainbowToggleFrameCorner.Name = "RainbowToggleFrameCorner"
  1317. RainbowToggleFrameCorner.Parent = RainbowToggleFrame
  1318.  
  1319. RainbowToggleFrameRainbow.Name = "RainbowToggleFrameRainbow"
  1320. RainbowToggleFrameRainbow.Parent = RainbowToggleFrame
  1321. RainbowToggleFrameRainbow.BackgroundColor3 = Color3.fromRGB(67,136,246)
  1322. RainbowToggleFrameRainbow.BackgroundTransparency = 1.000
  1323. RainbowToggleFrameRainbow.Position = UDim2.new(-0.0198377371, 0, 0.00601506233, 0)
  1324. RainbowToggleFrameRainbow.Size = UDim2.new(0, 36, 0, 19)
  1325.  
  1326. RainbowToggleFrameRainbowCorner.CornerRadius = UDim.new(1, 0)
  1327. RainbowToggleFrameRainbowCorner.Name = "RainbowToggleFrameRainbowCorner"
  1328. RainbowToggleFrameRainbowCorner.Parent = RainbowToggleFrameRainbow
  1329.  
  1330. RainbowToggleDot.Name = "RainbowToggleDot"
  1331. RainbowToggleDot.Parent = RainbowToggleFrameRainbow
  1332. RainbowToggleDot.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1333. RainbowToggleDot.Position = UDim2.new(0.104999997, -3, 0.289000005, -4)
  1334. RainbowToggleDot.Size = UDim2.new(0, 16, 0, 16)
  1335.  
  1336. RainbowToggleDotCorner.CornerRadius = UDim.new(1, 0)
  1337. RainbowToggleDotCorner.Name = "RainbowToggleDotCorner"
  1338. RainbowToggleDotCorner.Parent = RainbowToggleDot
  1339.  
  1340. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1341.  
  1342. Colorpicker.MouseEnter:Connect(
  1343. function()
  1344. TweenService:Create(
  1345. Colorpicker,
  1346. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1347. {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
  1348. ):Play()
  1349. end
  1350. )
  1351. Colorpicker.MouseLeave:Connect(
  1352. function()
  1353. TweenService:Create(
  1354. Colorpicker,
  1355. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1356. {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
  1357. ):Play()
  1358. end
  1359. )
  1360.  
  1361. local function UpdateColorPicker(nope)
  1362. BoxColor.BackgroundColor3 = Color3.fromHSV(ColorH, ColorS, ColorV)
  1363. Color.BackgroundColor3 = Color3.fromHSV(ColorH, 1, 1)
  1364.  
  1365. pcall(callback, BoxColor.BackgroundColor3)
  1366. end
  1367.  
  1368. ColorH =
  1369. 1 -
  1370. (math.clamp(HueSelection.AbsolutePosition.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) /
  1371. Hue.AbsoluteSize.Y)
  1372. ColorS =
  1373. (math.clamp(ColorSelection.AbsolutePosition.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) /
  1374. Color.AbsoluteSize.X)
  1375. ColorV =
  1376. 1 -
  1377. (math.clamp(ColorSelection.AbsolutePosition.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) /
  1378. Color.AbsoluteSize.Y)
  1379.  
  1380. BoxColor.BackgroundColor3 = preset
  1381. Color.BackgroundColor3 = preset
  1382. pcall(callback, BoxColor.BackgroundColor3)
  1383.  
  1384. Color.InputBegan:Connect(
  1385. function(input)
  1386. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1387. if RainbowColorPicker then
  1388. return
  1389. end
  1390.  
  1391. if ColorInput then
  1392. ColorInput:Disconnect()
  1393. end
  1394.  
  1395. ColorInput =
  1396. RunService.RenderStepped:Connect(
  1397. function()
  1398. local ColorX =
  1399. (math.clamp(Mouse.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) /
  1400. Color.AbsoluteSize.X)
  1401. local ColorY =
  1402. (math.clamp(Mouse.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) /
  1403. Color.AbsoluteSize.Y)
  1404.  
  1405. ColorSelection.Position = UDim2.new(ColorX, 0, ColorY, 0)
  1406. ColorS = ColorX
  1407. ColorV = 1 - ColorY
  1408.  
  1409. UpdateColorPicker(true)
  1410. end
  1411. )
  1412. end
  1413. end
  1414. )
  1415.  
  1416. Color.InputEnded:Connect(
  1417. function(input)
  1418. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1419. if ColorInput then
  1420. ColorInput:Disconnect()
  1421. end
  1422. end
  1423. end
  1424. )
  1425.  
  1426. Hue.InputBegan:Connect(
  1427. function(input)
  1428. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1429. if RainbowColorPicker then
  1430. return
  1431. end
  1432.  
  1433. if HueInput then
  1434. HueInput:Disconnect()
  1435. end
  1436.  
  1437. HueInput =
  1438. RunService.RenderStepped:Connect(
  1439. function()
  1440. local HueY =
  1441. (math.clamp(Mouse.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) /
  1442. Hue.AbsoluteSize.Y)
  1443.  
  1444. HueSelection.Position = UDim2.new(0.48, 0, HueY, 0)
  1445. ColorH = 1 - HueY
  1446.  
  1447. UpdateColorPicker(true)
  1448. end
  1449. )
  1450. end
  1451. end
  1452. )
  1453.  
  1454. Hue.InputEnded:Connect(
  1455. function(input)
  1456. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1457. if HueInput then
  1458. HueInput:Disconnect()
  1459. end
  1460. end
  1461. end
  1462. )
  1463.  
  1464. RainbowToggle.MouseButton1Down:Connect(
  1465. function()
  1466. RainbowColorPicker = not RainbowColorPicker
  1467.  
  1468. if ColorInput then
  1469. ColorInput:Disconnect()
  1470. end
  1471.  
  1472. if HueInput then
  1473. HueInput:Disconnect()
  1474. end
  1475.  
  1476. if RainbowColorPicker then
  1477. TweenService:Create(
  1478. RainbowToggleFrameRainbow,
  1479. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1480. {BackgroundTransparency = 0}
  1481. ):Play()
  1482. TweenService:Create(
  1483. RainbowToggleDot,
  1484. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1485. {Position = UDim2.new(0.595, -3, 0.289000005, -4)}
  1486. ):Play()
  1487.  
  1488. OldToggleColor = BoxColor.BackgroundColor3
  1489. OldColor = Color.BackgroundColor3
  1490. OldColorSelectionPosition = ColorSelection.Position
  1491. OldHueSelectionPosition = HueSelection.Position
  1492.  
  1493. while RainbowColorPicker do
  1494. BoxColor.BackgroundColor3 = Color3.fromHSV(VLib.RainbowColorValue, 1, 1)
  1495. Color.BackgroundColor3 = Color3.fromHSV(VLib.RainbowColorValue, 1, 1)
  1496.  
  1497. ColorSelection.Position = UDim2.new(1, 0, 0, 0)
  1498. HueSelection.Position = UDim2.new(0.48, 0, 0, VLib.HueSelectionPosition)
  1499.  
  1500. pcall(callback, BoxColor.BackgroundColor3)
  1501. wait()
  1502. end
  1503. elseif not RainbowColorPicker then
  1504. TweenService:Create(
  1505. RainbowToggleFrameRainbow,
  1506. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1507. {BackgroundTransparency = 1}
  1508. ):Play()
  1509. TweenService:Create(
  1510. RainbowToggleDot,
  1511. TweenInfo.new(.2, Enum.EasingStyle.Quad),
  1512. {Position = UDim2.new(0.104999997, -3, 0.289000005, -4)}
  1513. ):Play()
  1514.  
  1515. BoxColor.BackgroundColor3 = OldToggleColor
  1516. Color.BackgroundColor3 = OldColor
  1517.  
  1518. ColorSelection.Position = OldColorSelectionPosition
  1519. HueSelection.Position = OldHueSelectionPosition
  1520.  
  1521. pcall(callback, BoxColor.BackgroundColor3)
  1522. end
  1523. end
  1524. )
  1525.  
  1526. Colorpicker.MouseButton1Click:Connect(
  1527. function()
  1528. if ColorPickerToggled == false then
  1529. ColorPickerToggled = not ColorPickerToggled
  1530. ColorpickerFrame.Visible = true
  1531. ColorpickerFrame:TweenSize(
  1532. UDim2.new(0, 403, 0, 100),
  1533. Enum.EasingDirection.Out,
  1534. Enum.EasingStyle.Quart,
  1535. 0.1,
  1536. true
  1537. )
  1538. repeat
  1539. wait()
  1540. until ColorpickerFrame.Size == UDim2.new(0, 403, 0, 100)
  1541. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1542. else
  1543. ColorPickerToggled = not ColorPickerToggled
  1544. ColorpickerFrame:TweenSize(
  1545. UDim2.new(0, 403, 0, 0),
  1546. Enum.EasingDirection.Out,
  1547. Enum.EasingStyle.Quart,
  1548. 0.1,
  1549. true
  1550. )
  1551. repeat
  1552. wait()
  1553. until ColorpickerFrame.Size == UDim2.new(0, 403, 0, 0)
  1554. ColorpickerFrame.Visible = false
  1555. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1556. end
  1557. end
  1558. )
  1559.  
  1560. Confirm.MouseButton1Click:Connect(
  1561. function()
  1562. ColorPickerToggled = not ColorPickerToggled
  1563. ColorpickerFrame:TweenSize(
  1564. UDim2.new(0, 403, 0, 0),
  1565. Enum.EasingDirection.Out,
  1566. Enum.EasingStyle.Quart,
  1567. 0.1,
  1568. true
  1569. )
  1570. repeat
  1571. wait()
  1572. until ColorpickerFrame.Size == UDim2.new(0, 403, 0, 0)
  1573. ColorpickerFrame.Visible = false
  1574. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1575. end)
  1576.  
  1577. coroutine.wrap(
  1578. function()
  1579. while wait() do
  1580.  
  1581. end
  1582. end
  1583. )()
  1584. end
  1585. function ContainerItems:Label(text)
  1586. local labelfunc = {}
  1587. local Label = Instance.new("TextButton")
  1588. local LabelCorner = Instance.new("UICorner")
  1589.  
  1590. Label.Name = "Label"
  1591. Label.Parent = Container
  1592. Label.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  1593. Label.Size = UDim2.new(0, 405, 0, 40)
  1594. Label.AutoButtonColor = false
  1595. Label.Font = Enum.Font.Gotham
  1596. Label.TextColor3 = Color3.fromRGB(255, 255, 255)
  1597. Label.TextSize = 17.000
  1598. Label.Text = text
  1599.  
  1600. LabelCorner.CornerRadius = UDim.new(0, 5)
  1601. LabelCorner.Name = "LabelCorner"
  1602. LabelCorner.Parent = Label
  1603.  
  1604. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1605.  
  1606. function labelfunc:Refresh(tochange)
  1607. Label.Text = tochange
  1608. end
  1609.  
  1610. return labelfunc
  1611. end
  1612.  
  1613. function ContainerItems:line()
  1614. local labelfunc = {}
  1615. local Label = Instance.new("TextButton")
  1616. local LabelCorner = Instance.new("UICorner")
  1617.  
  1618. Label.Name = "Label"
  1619. Label.Parent = Container
  1620. Label.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  1621. Label.Size = UDim2.new(0, 405, 0, 5)
  1622. Label.AutoButtonColor = false
  1623. Label.Font = Enum.Font.Gotham
  1624. Label.TextColor3 = Color3.fromRGB(255, 255, 255)
  1625. Label.TextSize = 17.000
  1626. Label.Text = ""
  1627.  
  1628. LabelCorner.CornerRadius = UDim.new(0, 5)
  1629. LabelCorner.Name = "LabelCorner"
  1630. LabelCorner.Parent = Label
  1631.  
  1632. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1633.  
  1634. function labelfunc:Refresh(tochange)
  1635. Label.Text = tochange
  1636. end
  1637.  
  1638. return labelfunc
  1639. end
  1640.  
  1641. function ContainerItems:Bind(Title, keybind_options, callback)
  1642. local keybind_data = {}
  1643.  
  1644. local Keybind = Instance.new("TextButton")
  1645. local Title = Instance.new("TextLabel")
  1646. local KeybindFrame = Instance.new("Frame")
  1647. local KeybindFrameCorner = Instance.new("UICorner")
  1648. local TextButton = Instance.new("TextButton")
  1649. local KeybindCorner = Instance.new("UICorner")
  1650. local ContainerLayout = Instance.new("UIListLayout")
  1651.  
  1652.  
  1653. Keybind.Name = "Keybind"
  1654. Keybind.Parent = Container
  1655. Keybind.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  1656. Keybind.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  1657. Keybind.Size = UDim2.new(0, 405, 0, 40)
  1658. Keybind.AutoButtonColor = false
  1659. Keybind.Font = Enum.Font.Gotham
  1660. Keybind.Text = ""
  1661. Keybind.TextColor3 = Color3.fromRGB(255, 255, 255)
  1662. Keybind.TextSize = 14.000
  1663.  
  1664. Title.Name = "Title"
  1665. Title.Parent = Keybind
  1666. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1667. Title.BackgroundTransparency = 1.000
  1668. Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  1669. Title.Size = UDim2.new(0, 405, 0, 40)
  1670. Title.Font = Enum.Font.Gotham
  1671. Title.Text = "Keybind"
  1672. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1673. Title.TextSize = 15.000
  1674. Title.TextXAlignment = Enum.TextXAlignment.Left
  1675.  
  1676. KeybindFrame.Name = "KeybindFrame"
  1677. KeybindFrame.Parent = Keybind
  1678. KeybindFrame.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
  1679. KeybindFrame.Position = UDim2.new(0.650124013, 0, 0.159999996, 0)
  1680. KeybindFrame.Size = UDim2.new(0, 134, 0, 24)
  1681.  
  1682. KeybindFrameCorner.CornerRadius = UDim.new(0, 6)
  1683. KeybindFrameCorner.Name = "KeybindFrameCorner"
  1684. KeybindFrameCorner.Parent = KeybindFrame
  1685.  
  1686. TextButton.Parent = KeybindFrame
  1687. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1688. TextButton.BackgroundTransparency = 1.000
  1689. TextButton.Size = UDim2.new(0, 134, 0, 23)
  1690. TextButton.Font = Enum.Font.Gotham
  1691. TextButton.Text = "Keybind"
  1692. TextButton.TextColor3 = Color3.fromRGB(178, 178, 178)
  1693. TextButton.TextSize = 15.000
  1694.  
  1695. KeybindCorner.CornerRadius = UDim.new(0, 6)
  1696. KeybindCorner.Name = "KeybindCorner"
  1697. KeybindCorner.Parent = Keybind
  1698.  
  1699. ContainerLayout.Name = "ContainerLayout"
  1700. ContainerLayout.Parent = Container
  1701. ContainerLayout.SortOrder = Enum.SortOrder.LayoutOrder
  1702. ContainerLayout.Padding = UDim.new(0, 15)
  1703.  
  1704. local UIS = game:GetService('UserInputService')
  1705.  
  1706.  
  1707. keybind_name = tostring(keybind_name or "New Keybind")
  1708. callback = typeof(callback) == "function" and callback or function()end
  1709. keybind_options = typeof(keybind_options) == "table" and keybind_options or {}
  1710. keybind_options = {
  1711. ["standard"] = keybind_options.standard or Enum.KeyCode.RightShift,
  1712. }
  1713.  
  1714.  
  1715.  
  1716. callback = typeof(callback) == "function" and callback or function()end
  1717. keybind_options = typeof(keybind_options) == "table" and keybind_options or {}
  1718. keybind_options = {
  1719. ["standard"] = keybind_options.standard or Enum.KeyCode.RightShift,
  1720. }
  1721.  
  1722. local shortkeys = { -- thanks to stroketon for helping me out with this
  1723. RightControl = 'RightCtrl',
  1724. LeftControl = 'LeftCtrl',
  1725. LeftShift = 'LShift',
  1726. RightShift = 'RShift',
  1727. MouseButton1 = "Mouse1",
  1728. MouseButton2 = "Mouse2"
  1729. }
  1730. local checks = {
  1731. binding = false,
  1732.  
  1733. }
  1734. function keybind_data:SetKeybind(Keybind)
  1735. local key = shortkeys[Keybind.Name] or Keybind.Name
  1736. TextButton.Text = key
  1737. keybind = Keybind
  1738. end
  1739.  
  1740. UIS.InputBegan:Connect(function(a, b)
  1741. if checks.binding then
  1742. spawn(function()
  1743. wait()
  1744. checks.binding = false
  1745. end)
  1746. return
  1747. end
  1748. if a.KeyCode == keybind and not b then
  1749. pcall(callback, keybind)
  1750. end
  1751. end)
  1752.  
  1753. keybind_data:SetKeybind(keybind_options.standard)
  1754.  
  1755. TextButton.MouseButton1Click:Connect(function()
  1756. if checks.binding then return end
  1757. TextButton.Text = "..."
  1758. checks.binding = true
  1759. local a, b = UIS.InputBegan:Wait()
  1760. keybind_data:SetKeybind(a.KeyCode)
  1761. end)
  1762. return keybind_data
  1763. end
  1764.  
  1765.  
  1766. function ContainerItems:Textbox(text, disapper, callback)
  1767. local Textbox = Instance.new("TextButton")
  1768. local Title = Instance.new("TextLabel")
  1769. local TextboxFrame = Instance.new("Frame")
  1770. local TextboxFrameCorner = Instance.new("UICorner")
  1771. local TextBox = Instance.new("TextBox")
  1772. local TextboxCorner = Instance.new("UICorner")
  1773.  
  1774. Textbox.Name = "Textbox"
  1775. Textbox.Parent = Container
  1776. Textbox.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  1777. Textbox.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
  1778. Textbox.Size = UDim2.new(0, 405, 0, 40)
  1779. Textbox.AutoButtonColor = false
  1780. Textbox.Font = Enum.Font.Gotham
  1781. Textbox.Text = ""
  1782. Textbox.TextColor3 = Color3.fromRGB(255, 255, 255)
  1783. Textbox.TextSize = 14.000
  1784.  
  1785. Title.Name = "Title"
  1786. Title.Parent = Textbox
  1787. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1788. Title.BackgroundTransparency = 1.000
  1789. Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
  1790. Title.Size = UDim2.new(0, 405, 0, 40)
  1791. Title.Font = Enum.Font.Gotham
  1792. Title.Text = text
  1793. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1794. Title.TextSize = 15.000
  1795. Title.TextXAlignment = Enum.TextXAlignment.Left
  1796.  
  1797. TextboxFrame.Name = "TextboxFrame"
  1798. TextboxFrame.Parent = Textbox
  1799. TextboxFrame.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
  1800. TextboxFrame.Position = UDim2.new(0.650124013, 0, 0.16, 0)
  1801. TextboxFrame.Size = UDim2.new(0, 134, 0, 24)
  1802.  
  1803. TextboxFrameCorner.CornerRadius = UDim.new(0, 6)
  1804. TextboxFrameCorner.Name = "TextboxFrameCorner"
  1805. TextboxFrameCorner.Parent = TextboxFrame
  1806.  
  1807. TextBox.Parent = TextboxFrame
  1808. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1809. TextBox.BackgroundTransparency = 1.000
  1810. TextBox.Size = UDim2.new(0, 134, 0, 19)
  1811. TextBox.Font = Enum.Font.Gotham
  1812. TextBox.Text = ""
  1813. TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  1814. TextBox.TextSize = 15.000
  1815.  
  1816. TextboxCorner.CornerRadius = UDim.new(0, 6)
  1817. TextboxCorner.Name = "TextboxCorner"
  1818. TextboxCorner.Parent = Textbox
  1819.  
  1820. TextBox.FocusLost:Connect(
  1821. function(ep)
  1822. if ep then
  1823. if #TextBox.Text > 0 then
  1824. pcall(callback, TextBox.Text)
  1825. if disapper then
  1826. TextBox.Text = ""
  1827. end
  1828. end
  1829. end
  1830. end
  1831. )
  1832.  
  1833. Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
  1834. end
  1835. return ContainerItems
  1836. end
  1837. return Tabs
  1838. end
  1839. -- oofhead should stop making jokes
  1840. local Win = VLib:Window("Bacon hub ", "v1")
  1841. local Main = Win:Tab("Stuff")
  1842. local Main= Win:Tab('Main')
  1843.  
  1844.  
  1845. Main:Button("Brookhaven gui",function()
  1846. loadstring(game:HttpGet('https://raw.githubusercontent.com/IceMael7/IceHubBrookhaven/main/Brookhaven'))()
  1847. end)
  1848.  
  1849. Main:Button("Moon hub 1.3",function()
  1850. loadstring(game:HttpGet("https://pastebin.com/raw/LwQkm563"))();
  1851.  
  1852.  
  1853. end)
  1854.  
  1855. Main:Button("Moon hub 1.2",function()
  1856. loadstring(game:HttpGet("https://pastebin.com/raw/Gae7YC84"))();
  1857.  
  1858.  
  1859. end)
  1860.  
  1861. Main:Button("Ninja legends gui",function()
  1862. pcall(loadstring(game:HttpGet("https://pastebin.com/raw/2UjrXwTV")))
  1863.  
  1864.  
  1865. end)
  1866.  
  1867. Main:Button("bedwars gui",function()
  1868. loadstring(game:HttpGet("https://pastebin.com/raw/ELCkygpv", true))()
  1869. end)
  1870. Main:Button("bed wars gui",function()
  1871. loadstring(game:HttpGet("https://pastebin.com/raw/ELCkygpv", true))()
  1872. end)
  1873.  
  1874. Main:Button("da hood gui",function()
  1875. loadstring(game:HttpGet("https://raw.githubusercontent.com/lmmake/LuaThings/main/cockandballs"))()
  1876. end)
  1877.  
  1878. Main:Button("Prison life gui",function()
  1879. -- WILL NOT WORK ON FREE EXPLOITS!
  1880. -- [Made By Jake11price]
  1881. -- Enjoy
  1882. local function SendNotification(title,text,duration,...)
  1883. game.StarterGui:SetCore("SendNotification", {
  1884. Title = title;
  1885. Text = text;
  1886. Icon = "";
  1887. Duration = duration;
  1888. })
  1889. end
  1890.  
  1891. game.Players.ChildAdded:Connect(function(player)
  1892. if not pcall (function()
  1893. SendNotification("Player Joined",""..player.Name.." Has joined the server",2.5 )
  1894. end) then
  1895. print ("Error")
  1896. end
  1897. end)
  1898.  
  1899. game.Players.ChildRemoved:Connect(function(player)
  1900. if not pcall (function()
  1901. SendNotification("Player Left",""..player.Name.." Has rage quit",2.5 )
  1902. end) then
  1903. print ("Error")
  1904. end
  1905. end)
  1906. for i,v in pairs(game:GetService("CoreGui"):GetChildren()) do
  1907. if v.Name == "PurchasePromptApp" then
  1908. v:Remove()
  1909. end
  1910. end
  1911. for i,v in pairs(game:GetService("CoreGui"):GetChildren()) do
  1912. if v.Name == "PrisonBreakerV1.6" then
  1913. v:Remove()
  1914. end
  1915. end
  1916.  
  1917. local toggle = false
  1918. local PrisonBreakerV16 = Instance.new("ScreenGui")
  1919. local openmain = Instance.new("Frame")
  1920. local open = Instance.new("TextButton")
  1921. local main = Instance.new("Frame")
  1922. local title = Instance.new("TextLabel")
  1923. local home = Instance.new("TextButton")
  1924. local guis = Instance.new("TextButton")
  1925. local teams = Instance.new("TextButton")
  1926. local funcs = Instance.new("TextButton")
  1927. local homemain = Instance.new("Frame")
  1928. local title_2 = Instance.new("TextLabel")
  1929. local TextLabel = Instance.new("TextLabel")
  1930. local teamsmain = Instance.new("Frame")
  1931. local cop = Instance.new("TextButton")
  1932. local inmate = Instance.new("TextButton")
  1933. local neutral = Instance.new("TextButton")
  1934. local crim = Instance.new("TextButton")
  1935. local guismain = Instance.new("Frame")
  1936. local prisonbreakerv15 = Instance.new("TextButton")
  1937. local prisondestroyer = Instance.new("TextButton")
  1938. local kickgui = Instance.new("TextButton")
  1939. local scriptsmain = Instance.new("Frame")
  1940. local godmode = Instance.new("TextButton")
  1941. local destroy = Instance.new("TextButton")
  1942. local hitbox = Instance.new("TextButton")
  1943. local antikickmainon = Instance.new("Frame")
  1944. local antikickon = Instance.new("TextButton")
  1945. local antikickmainoff = Instance.new("Frame")
  1946. local antikickoff = Instance.new("TextButton")
  1947. local modguns = Instance.new("TextButton")
  1948. PrisonBreakerV16.Name = "PrisonBreakerV1.6"
  1949. PrisonBreakerV16.Parent = game.CoreGui
  1950. -- All Skids Welcome
  1951.  
  1952. openmain.Name = "openmain"
  1953. openmain.Parent = PrisonBreakerV16
  1954. openmain.BackgroundColor3 = Color3.new(1, 1, 1)
  1955. openmain.Position = UDim2.new(0.0104873544, 0, 0.549140036, 0)
  1956. openmain.Size = UDim2.new(0, 100, 0, 26)
  1957.  
  1958. open.Name = "open"
  1959. open.Parent = openmain
  1960. open.BackgroundColor3 = Color3.new(1, 0, 0.498039)
  1961. open.Position = UDim2.new(0, 0, -0.0299201012, 0)
  1962. open.Size = UDim2.new(0, 100, 0, 26)
  1963. open.Font = Enum.Font.GothamBlack
  1964. open.Text = "OPEN"
  1965. open.TextColor3 = Color3.new(0, 0, 0)
  1966. open.TextSize = 18
  1967. open.TextWrapped = true
  1968. open.MouseButton1Down:connect(function()
  1969. local main = game:GetService("CoreGui")["PrisonBreakerV1.6"].main
  1970. wait(0.01)
  1971. if toggle == false then
  1972. main:TweenPosition(UDim2.new(0.081, 0, 0.3, 0), 'Out', 'Quad', 0.8)
  1973. toggle = true
  1974. else
  1975. main:TweenPosition(UDim2.new(1.5, 0, 0.8, 0), 'Out', 'Quad', 0.8)
  1976. toggle = false
  1977. end
  1978. wait(0.9)
  1979. if main.Position == (UDim2.new(0.081, 0, 0.3, 0)) then
  1980. open.Text = "CLOSE"
  1981. else
  1982. open.Text = "OPEN"
  1983. end
  1984. end)
  1985.  
  1986. main.Name = "main"
  1987. main.Parent = PrisonBreakerV16
  1988. main.BackgroundColor3 = Color3.new(0, 0, 127)
  1989. main.BorderColor3 = Color3.new(0, 0, 127)
  1990. main.BorderSizePixel = 5
  1991. main.Position = UDim2.new(1.5, 0, 0.8, 0)
  1992. main.Size = UDim2.new(0, 465, 0, 341)
  1993. main.Active = true
  1994. main.Draggable = true
  1995.  
  1996. title.Name = "title"
  1997. title.Parent = main
  1998. title.BackgroundColor3 = Color3.new(0, 0, 0)
  1999. title.BorderSizePixel = 2
  2000. title.Position = UDim2.new(0.0064516128, 0, 0.829912007, 0)
  2001. title.Size = UDim2.new(0, 459, 0, 58)
  2002. title.Font = Enum.Font.GothamBold
  2003. title.Text = "PrisonBreaker V1.6 Made By Jake11price"
  2004. title.TextColor3 = Color3.new(1, 0, 0)
  2005. title.TextSize = 15
  2006.  
  2007. home.Name = "home"
  2008. home.Parent = main
  2009. home.BackgroundColor3 = Color3.new(255, 0, 0)
  2010. home.Position = UDim2.new(0.0129032256, 0, 0.0263929628, 0)
  2011. home.Size = UDim2.new(0, 100, 0, 37)
  2012. home.Font = Enum.Font.GothamBlack
  2013. home.Text = "Home"
  2014. home.TextColor3 = Color3.new(0, 0, 0)
  2015. home.TextSize = 25
  2016. function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
  2017. local script = Instance.new('LocalScript')
  2018. script.Parent = home
  2019. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  2020.  
  2021. counter = 0
  2022.  
  2023. while wait(0.1)do
  2024. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  2025.  
  2026. counter = counter + 0.01
  2027. end
  2028.  
  2029.  
  2030. end
  2031. coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
  2032. home.MouseButton1Down:connect(function()
  2033. teamsmain.Visible = false
  2034. guismain.Visible = false
  2035. scriptsmain.Visible = false
  2036. homemain.Visible = true
  2037. end)
  2038.  
  2039. guis.Name = "guis"
  2040. guis.Parent = main
  2041. guis.BackgroundColor3 = Color3.new(255, 0, 0)
  2042. guis.Position = UDim2.new(0.246848866, 0, 0.0263929628, 0)
  2043. guis.Size = UDim2.new(0, 108, 0, 37)
  2044. guis.Font = Enum.Font.GothamBlack
  2045. guis.Text = "Guis"
  2046. guis.TextColor3 = Color3.new(0, 0, 0)
  2047. guis.TextSize = 25
  2048. function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
  2049. local script = Instance.new('LocalScript')
  2050. script.Parent = guis
  2051. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  2052.  
  2053. counter = 0
  2054.  
  2055. while wait(0.1)do
  2056. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  2057.  
  2058. counter = counter + 0.01
  2059. end
  2060.  
  2061.  
  2062. end
  2063. coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
  2064. guis.MouseButton1Down:connect(function()
  2065. teamsmain.Visible = false
  2066. scriptsmain.Visible = false
  2067. homemain.Visible = false
  2068. guismain.Visible = true
  2069. end)
  2070.  
  2071. teams.Name = "teams"
  2072. teams.Parent = main
  2073. teams.BackgroundColor3 = Color3.new(255, 0, 0)
  2074. teams.Position = UDim2.new(0.500149369, 0, 0.0263929628, 0)
  2075. teams.Size = UDim2.new(0, 108, 0, 37)
  2076. teams.Font = Enum.Font.GothamBlack
  2077. teams.Text = "Teams"
  2078. teams.TextColor3 = Color3.new(0, 0, 0)
  2079. teams.TextSize = 25
  2080. function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
  2081. local script = Instance.new('LocalScript')
  2082. script.Parent = teams
  2083. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  2084.  
  2085. counter = 0
  2086.  
  2087. while wait(0.1)do
  2088. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  2089.  
  2090. counter = counter + 0.01
  2091. end
  2092.  
  2093.  
  2094. end
  2095. coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
  2096. teams.MouseButton1Down:connect(function()
  2097. scriptsmain.Visible = false
  2098. homemain.Visible = false
  2099. guismain.Visible = false
  2100. teamsmain.Visible = true
  2101. end)
  2102.  
  2103. funcs.Name = "funcs"
  2104. funcs.Parent = main
  2105. funcs.BackgroundColor3 = Color3.new(255, 0, 0)
  2106. funcs.Position = UDim2.new(0.754838645, 0, 0.0263929628, 0)
  2107. funcs.Size = UDim2.new(0, 108, 0, 37)
  2108. funcs.Font = Enum.Font.GothamBlack
  2109. funcs.Text = "New Scripts"
  2110. funcs.TextColor3 = Color3.new(0, 0, 0)
  2111. funcs.TextSize = 18
  2112. function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
  2113. local script = Instance.new('LocalScript')
  2114. script.Parent = funcs
  2115. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  2116.  
  2117. counter = 0
  2118.  
  2119. while wait(0.1)do
  2120. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  2121.  
  2122. counter = counter + 0.01
  2123. end
  2124.  
  2125.  
  2126. end
  2127. coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
  2128. funcs.MouseButton1Down:connect(function()
  2129. homemain.Visible = false
  2130. guismain.Visible = false
  2131. teamsmain.Visible = false
  2132. scriptsmain.Visible = true
  2133. end)
  2134.  
  2135. homemain.Name = "homemain"
  2136. homemain.Parent = main
  2137. homemain.BackgroundColor3 = Color3.new(0, 0, 0)
  2138. homemain.Position = UDim2.new(0, 0, 0.178885639, 0)
  2139. homemain.Size = UDim2.new(0, 465, 0, 218)
  2140.  
  2141. title_2.Name = "title"
  2142. title_2.Parent = homemain
  2143. title_2.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  2144. title_2.BorderSizePixel = 0
  2145. title_2.Position = UDim2.new(0.0206066482, 0, 0.0379392318, 0)
  2146. title_2.Size = UDim2.new(0, 445, 0, 87)
  2147. title_2.Font = Enum.Font.GothamBlack
  2148. title_2.Text = "This is my last prison life gui... Enjoy the new scripts!"
  2149. title_2.TextColor3 = Color3.new(0, 0, 0)
  2150. title_2.TextScaled = true
  2151. title_2.TextSize = 14
  2152. title_2.TextWrapped = true
  2153.  
  2154. TextLabel.Parent = homemain
  2155. TextLabel.BackgroundColor3 = Color3.new(0, 1, 0)
  2156. TextLabel.BorderSizePixel = 0
  2157. TextLabel.Position = UDim2.new(0.0193548389, 0, 0.486238539, 0)
  2158. TextLabel.Size = UDim2.new(0, 445, 0, 87)
  2159. TextLabel.Font = Enum.Font.GothamBlack
  2160. TextLabel.Text = "Subscribe to my Youtube Channel: Jake11price"
  2161. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  2162. TextLabel.TextScaled = true
  2163. TextLabel.TextSize = 14
  2164. TextLabel.TextWrapped = true
  2165.  
  2166. teamsmain.Name = "teamsmain"
  2167. teamsmain.Parent = main
  2168. teamsmain.BackgroundColor3 = Color3.new(0, 0, 0)
  2169. teamsmain.BorderSizePixel = 0
  2170. teamsmain.Position = UDim2.new(0, 0, 0.178885639, 0)
  2171. teamsmain.Size = UDim2.new(0, 462, 0, 222)
  2172. teamsmain.Visible = false
  2173.  
  2174. cop.Name = "cop"
  2175. cop.Parent = teamsmain
  2176. cop.BackgroundColor3 = Color3.new(0, 0, 1)
  2177. cop.BorderSizePixel = 1
  2178. cop.Position = UDim2.new(0.0199004635, 0, 0.28773582, 0)
  2179. cop.Size = UDim2.new(0, 89, 0, 70)
  2180. cop.Font = Enum.Font.GothamBlack
  2181. cop.Text = "Guards"
  2182. cop.TextColor3 = Color3.new(0, 0, 0)
  2183. cop.TextSize = 18
  2184. cop.TextWrapped = true
  2185. cop.MouseButton1Down:connect(function()
  2186. workspace.Remote.TeamEvent:FireServer("Bright blue")
  2187. end)
  2188.  
  2189. inmate.Name = "inmate"
  2190. inmate.Parent = teamsmain
  2191. inmate.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  2192. inmate.BorderSizePixel = 1
  2193. inmate.Position = UDim2.new(0.278606981, 0, 0.28773585, 0)
  2194. inmate.Size = UDim2.new(0, 89, 0, 70)
  2195. inmate.Font = Enum.Font.GothamBlack
  2196. inmate.Text = "Inmates"
  2197. inmate.TextColor3 = Color3.new(0, 0, 0)
  2198. inmate.TextSize = 18
  2199. inmate.MouseButton1Down:connect(function()
  2200. workspace.Remote.TeamEvent:FireServer("Bright orange")
  2201. end)
  2202.  
  2203. neutral.Name = "neutral"
  2204. neutral.Parent = teamsmain
  2205. neutral.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
  2206. neutral.BorderSizePixel = 1
  2207. neutral.Position = UDim2.new(0.524875581, 0, 0.28773585, 0)
  2208. neutral.Size = UDim2.new(0, 89, 0, 70)
  2209. neutral.Font = Enum.Font.GothamBlack
  2210. neutral.Text = "Neutral"
  2211. neutral.TextColor3 = Color3.new(0, 0, 0)
  2212. neutral.TextSize = 18
  2213. neutral.MouseButton1Down:connect(function()
  2214. Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  2215. end)
  2216.  
  2217. crim.Name = "crim"
  2218. crim.Parent = teamsmain
  2219. crim.BackgroundColor3 = Color3.new(1, 0, 0)
  2220. crim.BorderSizePixel = 1
  2221. crim.Position = UDim2.new(0.768656731, 0, 0.28773585, 0)
  2222. crim.Size = UDim2.new(0, 89, 0, 70)
  2223. crim.Font = Enum.Font.GothamBlack
  2224. crim.Text = "Criminals"
  2225. crim.TextColor3 = Color3.new(0, 0, 0)
  2226. crim.TextSize = 18
  2227. crim.MouseButton1Down:connect(function()
  2228. local Crim = Instance.new("Part")
  2229. Crim.Name = "plr"
  2230. Crim.Parent = workspace
  2231. Crim.Anchored = true
  2232. Crim.Archivable = true
  2233. Crim.CFrame = CFrame.new(9e99, 9e99, 9e99)
  2234. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  2235. wait(0.1)
  2236. Crim.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2237. Crim.Transparency = 1
  2238. Crim.Anchored = true
  2239. Crim.CanCollide = false
  2240. lol = true
  2241. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  2242. Bruh.CanCollide = false
  2243. Bruh.Size = Vector3.new(51.05, 24.12, 54.76)
  2244. Bruh.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2245. Bruh.Transparency = 1
  2246. wait(0.1)
  2247. lol = false
  2248. wait(0.04)
  2249. if lol == false then
  2250. Bruh.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2251. Bruh.Size = Vector3.new(6, 0.2, 6)
  2252. Bruh.Transparency = 0
  2253. lol = false
  2254. end
  2255. end)
  2256.  
  2257. guismain.Name = "guismain"
  2258. guismain.Parent = main
  2259. guismain.BackgroundColor3 = Color3.new(1, 0.45098, 0)
  2260. guismain.BorderSizePixel = 0
  2261. guismain.Position = UDim2.new(0, 0, 0.178885639, 0)
  2262. guismain.Size = UDim2.new(0, 462, 0, 222)
  2263. guismain.Visible = false
  2264.  
  2265. prisonbreakerv15.Name = "prisonbreakerv1.5"
  2266. prisonbreakerv15.Parent = guismain
  2267. prisonbreakerv15.BackgroundColor3 = Color3.new(0, 0, 0)
  2268. prisonbreakerv15.Position = UDim2.new(0.0273631848, 0, 0.0566037744, 0)
  2269. prisonbreakerv15.Size = UDim2.new(0, 109, 0, 50)
  2270. prisonbreakerv15.Font = Enum.Font.GothamBlack
  2271. prisonbreakerv15.Text = "PrisonBreaker V1.5"
  2272. prisonbreakerv15.TextColor3 = Color3.new(0, 1, 0)
  2273. prisonbreakerv15.TextScaled = true
  2274. prisonbreakerv15.TextSize = 14
  2275. prisonbreakerv15.TextWrapped = true
  2276. prisonbreakerv15.MouseButton1Down:connect(function()
  2277. loadstring(game:HttpGet("https://pastebin.com/raw/HpCpt9rt",true))()
  2278. end)
  2279.  
  2280. prisondestroyer.Name = "prisondestroyer"
  2281. prisondestroyer.Parent = guismain
  2282. prisondestroyer.BackgroundColor3 = Color3.new(0, 0, 0)
  2283. prisondestroyer.Position = UDim2.new(0.363184065, 0, 0.0566037744, 0)
  2284. prisondestroyer.Size = UDim2.new(0, 109, 0, 50)
  2285. prisondestroyer.Font = Enum.Font.GothamBlack
  2286. prisondestroyer.Text = "PrisonDestroyer"
  2287. prisondestroyer.TextColor3 = Color3.new(0, 1, 0)
  2288. prisondestroyer.TextScaled = true
  2289. prisondestroyer.TextSize = 14
  2290. prisondestroyer.TextWrapped = true
  2291. prisondestroyer.MouseButton1Down:connect(function()
  2292. loadstring(game:HttpGet("https://pastebin.com/raw/nu20tAZE",true))()
  2293. end)
  2294.  
  2295. kickgui.Name = "kickgui"
  2296. kickgui.Parent = guismain
  2297. kickgui.BackgroundColor3 = Color3.new(0, 0, 0)
  2298. kickgui.Position = UDim2.new(0.701492548, 0, 0.0566037744, 0)
  2299. kickgui.Size = UDim2.new(0, 109, 0, 50)
  2300. kickgui.Font = Enum.Font.GothamBlack
  2301. kickgui.Text = "Kick Gui"
  2302. kickgui.TextColor3 = Color3.new(0, 1, 0)
  2303. kickgui.TextSize = 18
  2304. kickgui.TextWrapped = true
  2305. kickgui.MouseButton1Down:connect(function()
  2306. loadstring(game:HttpGet("https://pastebin.com/raw/AncyYd8Q", true))()
  2307. end)
  2308.  
  2309. scriptsmain.Name = "scriptsmain"
  2310. scriptsmain.Parent = main
  2311. scriptsmain.BackgroundColor3 = Color3.new(1, 0.45098, 0)
  2312. scriptsmain.BorderSizePixel = 0
  2313. scriptsmain.Position = UDim2.new(0, 0, 0.178885639, 0)
  2314. scriptsmain.Size = UDim2.new(0, 462, 0, 222)
  2315. scriptsmain.Visible = false
  2316.  
  2317. godmode.Name = "godmode"
  2318. godmode.Parent = scriptsmain
  2319. godmode.BackgroundColor3 = Color3.new(0, 0, 0)
  2320. godmode.Position = UDim2.new(0.12686567, 0, 0.061611373, 0)
  2321. godmode.Size = UDim2.new(0, 126, 0, 44)
  2322. godmode.Font = Enum.Font.GothamBlack
  2323. godmode.Text = "Godmode (SWAT ONLY)"
  2324. godmode.TextColor3 = Color3.new(0, 1, 0)
  2325. godmode.TextScaled = true
  2326. godmode.TextSize = 14
  2327. godmode.TextWrapped = true
  2328. godmode.MouseButton1Down:connect(function()
  2329. game.Players.LocalPlayer.Character.Humanoid.HealthChanged:Connect(function(health)
  2330. if health < game.Players.LocalPlayer.Character.Humanoid.MaxHealth then
  2331. workspace.Remote.TeamEvent:FireServer("Bright blue")
  2332. workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.clothes["Riot Police"].ITEMPICKUP)
  2333. workspace.Remote.TeamEvent:FireServer("Bright orange")
  2334. end
  2335. end)
  2336. end)
  2337.  
  2338. destroy.Name = "destroy"
  2339. destroy.Parent = scriptsmain
  2340. destroy.BackgroundColor3 = Color3.new(0, 0, 0)
  2341. destroy.Position = UDim2.new(0.559701502, 0, 0.061611373, 0)
  2342. destroy.Size = UDim2.new(0, 126, 0, 44)
  2343. destroy.Font = Enum.Font.GothamBlack
  2344. destroy.Text = "CRASH OTHERS!"
  2345. destroy.TextColor3 = Color3.new(0, 1, 0)
  2346. destroy.TextScaled = true
  2347. destroy.TextSize = 14
  2348. destroy.TextWrapped = true
  2349. destroy.MouseButton1Down:connect(function()
  2350. game:GetService("StarterGui"):SetCore("SendNotification", {
  2351. Title = "Destroying Server...";
  2352. Text = "Please wait up to 30 seconds!!";
  2353. })
  2354. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(917.909851, 129.489944, 2328.6958)
  2355. wait(0.5)
  2356. local client = game:GetService("Players").LocalPlayer
  2357.  
  2358. for _, child in next, client.Backpack:GetChildren() do
  2359. if child:IsA("Tool") then
  2360. client.Character.Humanoid:UnequipTools()
  2361. end
  2362. end
  2363.  
  2364. local Crim = Instance.new("Part")
  2365. Crim.Name = "plr"
  2366. Crim.Parent = workspace
  2367. Crim.Anchored = true
  2368. Crim.Archivable = true
  2369. Crim.CFrame = CFrame.new(9e99, 9e99, 9e99)
  2370. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  2371. wait(0.1)
  2372. Crim.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2373. Crim.Transparency = 1
  2374. Crim.Anchored = true
  2375. Crim.CanCollide = false
  2376. lol = true
  2377. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  2378. Bruh.CanCollide = false
  2379. Bruh.Size = Vector3.new(51.05, 24.12, 54.76)
  2380. Bruh.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2381. Bruh.Transparency = 1
  2382. wait(0.1)
  2383. lol = false
  2384. wait(0.04)
  2385. if lol == false then
  2386. Bruh.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2387. Bruh.Size = Vector3.new(6, 0.2, 6)
  2388. Bruh.Transparency = 0
  2389. lol = false
  2390. end
  2391. game.Workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.giver["Remington 870"].ITEMPICKUP)
  2392. wait(0.1)
  2393. local tbl_main =
  2394. {
  2395. "CRASHING SERVER!! Script made by jake11price.",
  2396. "All"
  2397. }
  2398. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(tbl_main))
  2399. wait(0.5)
  2400. game:GetService("StarterGui"):SetCore("SendNotification", {
  2401. Title = "Warning!!";
  2402. Text = "DO NOT EQUIP THE REMINGTON 870 UNTIL YOU TURN BACK INTO AN INMATE!!";
  2403. })
  2404. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  2405. for i=1,650 do
  2406. local tbl_36BA2890 =
  2407. {
  2408. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.812744, 31.2091656, 121.524826)),
  2409. ["Distance"] = 61.344123840332,
  2410. ["Cframe"] = CFrame.new(809.089844, 101.766418, 2219.49268, 0.363455683, 0.0792314336, -0.928236127, -1.86264515e-09, 0.996376872, 0.0850477219, 0.931611478, -0.0309110768, 0.362138808),
  2411. ["Hit"] = v.Character.Head
  2412. }
  2413. local tbl_36B5BF78 =
  2414. {
  2415. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.036713, 35.5271149, 122.755898)),
  2416. ["Distance"] = 61.299308776855,
  2417. ["Cframe"] = CFrame.new(809.180542, 102.100838, 2219.57886, 0.366918802, 0.0893238857, -0.92595464, 0, 0.995379448, 0.0960210636, 0.930253029, -0.035231933, 0.365223378),
  2418. ["Hit"] = v.Character.Head
  2419. }
  2420. local tbl_36B585E8 =
  2421. {
  2422. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.921326, 20.3493805, 123.473427)),
  2423. ["Distance"] = 61.141574859619,
  2424. ["Cframe"] = CFrame.new(809.180542, 100.912926, 2219.61255, 0.36787042, 0.0533849634, -0.928343356, 0, 0.99835068, 0.0574107729, 0.929877102, -0.021119725, 0.367263645),
  2425. ["Hit"] = v.Character.Head
  2426. }
  2427. local tbl_36B5CC38 =
  2428. {
  2429. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-371.464417, 33.5804787, 144.521744)),
  2430. ["Distance"] = 63.866916656494,
  2431. ["Cframe"] = CFrame.new(808.680542, 102.047562, 2221.70142, 0.418726623, 0.0821772888, -0.90438652, 0, 0.995897233, 0.0904924273, 0.908112347, -0.0378915891, 0.417008668),
  2432. ["Hit"] = v.Character.Head
  2433. }
  2434. local tbl_36B5BB28 =
  2435. {
  2436. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-376.177948, 24.8940163, 133.680374)),
  2437. ["Distance"] = 62.931880950928,
  2438. ["Cframe"] = CFrame.new(808.680542, 101.319054, 2220.68823, 0.391926825, 0.0631896704, -0.917823792, 0, 0.997638524, 0.0686846897, 0.91999644, -0.0269193724, 0.391001284),
  2439. ["Hit"] = v.Character.Head
  2440. }
  2441. local tbl_36B58A98 =
  2442. {
  2443. tbl_36B5BB28,
  2444. tbl_36B5CC38,
  2445. tbl_36B585E8,
  2446. tbl_36B5BF78,
  2447. tbl_36BA2890
  2448. }
  2449. local tbl_main =
  2450. {
  2451. tbl_36B58A98,
  2452. game:GetService("Players").LocalPlayer.Backpack["Remington 870"]
  2453. }
  2454. game:GetService("ReplicatedStorage").ShootEvent:FireServer(unpack(tbl_main))
  2455. local tbl_36BA2890 =
  2456. {
  2457. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.812744, 31.2091656, 121.524826)),
  2458. ["Distance"] = 61.344123840332,
  2459. ["Cframe"] = CFrame.new(809.089844, 101.766418, 2219.49268, 0.363455683, 0.0792314336, -0.928236127, -1.86264515e-09, 0.996376872, 0.0850477219, 0.931611478, -0.0309110768, 0.362138808),
  2460. ["Hit"] = v.Character.Head
  2461. }
  2462. local tbl_36B5BF78 =
  2463. {
  2464. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.036713, 35.5271149, 122.755898)),
  2465. ["Distance"] = 61.299308776855,
  2466. ["Cframe"] = CFrame.new(809.180542, 102.100838, 2219.57886, 0.366918802, 0.0893238857, -0.92595464, 0, 0.995379448, 0.0960210636, 0.930253029, -0.035231933, 0.365223378),
  2467. ["Hit"] = v.Character.Head
  2468. }
  2469. local tbl_36B585E8 =
  2470. {
  2471. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.921326, 20.3493805, 123.473427)),
  2472. ["Distance"] = 61.141574859619,
  2473. ["Cframe"] = CFrame.new(809.180542, 100.912926, 2219.61255, 0.36787042, 0.0533849634, -0.928343356, 0, 0.99835068, 0.0574107729, 0.929877102, -0.021119725, 0.367263645),
  2474. ["Hit"] = v.Character.Head
  2475. }
  2476. local tbl_36B5CC38 =
  2477. {
  2478. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-371.464417, 33.5804787, 144.521744)),
  2479. ["Distance"] = 63.866916656494,
  2480. ["Cframe"] = CFrame.new(808.680542, 102.047562, 2221.70142, 0.418726623, 0.0821772888, -0.90438652, 0, 0.995897233, 0.0904924273, 0.908112347, -0.0378915891, 0.417008668),
  2481. ["Hit"] = v.Character.Head
  2482. }
  2483. local tbl_36B5BB28 =
  2484. {
  2485. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-376.177948, 24.8940163, 133.680374)),
  2486. ["Distance"] = 62.931880950928,
  2487. ["Cframe"] = CFrame.new(808.680542, 101.319054, 2220.68823, 0.391926825, 0.0631896704, -0.917823792, 0, 0.997638524, 0.0686846897, 0.91999644, -0.0269193724, 0.391001284),
  2488. ["Hit"] = v.Character.Head
  2489. }
  2490. local tbl_36B58A98 =
  2491. {
  2492. tbl_36B5BB28,
  2493. tbl_36B5CC38,
  2494. tbl_36B585E8,
  2495. tbl_36B5BF78,
  2496. tbl_36BA2890
  2497. }
  2498. local tbl_main =
  2499. {
  2500. tbl_36B58A98,
  2501. game:GetService("Players").LocalPlayer.Backpack["Remington 870"]
  2502. }
  2503. game:GetService("ReplicatedStorage").ShootEvent:FireServer(unpack(tbl_main))
  2504. end
  2505. end
  2506. workspace.Remote.TeamEvent:FireServer("Bright orange")
  2507. end)
  2508.  
  2509. hitbox.Name = "hitbox"
  2510. hitbox.Parent = scriptsmain
  2511. hitbox.BackgroundColor3 = Color3.new(0, 0, 0)
  2512. hitbox.Position = UDim2.new(0.12686567, 0, 0.379146874, 0)
  2513. hitbox.Size = UDim2.new(0, 126, 0, 50)
  2514. hitbox.Font = Enum.Font.GothamBlack
  2515. hitbox.Text = "Guard Hitbox Expander"
  2516. hitbox.TextColor3 = Color3.new(0, 1, 0)
  2517. hitbox.TextScaled = true
  2518. hitbox.TextSize = 14
  2519. hitbox.TextWrapped = true
  2520. hitbox.MouseButton1Down:connect(function()
  2521. _G.HeadSize = 10
  2522. _G.Disabled = true
  2523. _G.Reset = true
  2524.  
  2525. game:GetService('RunService').RenderStepped:connect(function()
  2526. if _G.Disabled then
  2527. for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
  2528. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  2529. pcall(function()
  2530. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  2531. v.Character.HumanoidRootPart.Transparency = 0.7
  2532. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  2533. v.Character.HumanoidRootPart.Material = "Neon"
  2534. v.Character.HumanoidRootPart.CanCollide = false
  2535. end)
  2536. if _G.Reset then
  2537. if v.Character.Humanoid.Health == 0 then
  2538. v.Character.HumanoidRootPart.Size = Vector3.new(1,1,1)
  2539. end
  2540. end
  2541. end
  2542. end
  2543. end
  2544. end)
  2545. end)
  2546.  
  2547. antikickmainon.Name = "antikickmainon"
  2548. antikickmainon.Parent = scriptsmain
  2549. antikickmainon.BackgroundColor3 = Color3.new(1, 1, 1)
  2550. antikickmainon.Position = UDim2.new(0.559701502, 0, 0.379146934, 0)
  2551. antikickmainon.Size = UDim2.new(0, 126, 0, 50)
  2552. antikickmainon.Visible = false
  2553.  
  2554. antikickon.Name = "antikickon"
  2555. antikickon.Parent = antikickmainon
  2556. antikickon.BackgroundColor3 = Color3.new(0, 1, 0)
  2557. antikickon.Size = UDim2.new(0, 126, 0, 50)
  2558. antikickon.Font = Enum.Font.GothamBlack
  2559. antikickon.Text = "CrimAura (On)"
  2560. antikickon.TextColor3 = Color3.new(0, 0, 0)
  2561. antikickon.TextSize = 14
  2562. antikickon.MouseButton1Down:connect(function()
  2563. antikickmainon.Visible = false
  2564. antikickmainoff.Visible = true
  2565. _G.Crim = false
  2566. end)
  2567.  
  2568. antikickmainoff.Name = "antikickmainoff"
  2569. antikickmainoff.Parent = scriptsmain
  2570. antikickmainoff.BackgroundColor3 = Color3.new(1, 1, 1)
  2571. antikickmainoff.Position = UDim2.new(0.559701562, 0, 0.379146814, 0)
  2572. antikickmainoff.Size = UDim2.new(0, 126, 0, 50)
  2573.  
  2574. antikickoff.Name = "antikickoff"
  2575. antikickoff.Parent = antikickmainoff
  2576. antikickoff.BackgroundColor3 = Color3.new(1, 0, 0)
  2577. antikickoff.Size = UDim2.new(0, 126, 0, 50)
  2578. antikickoff.Font = Enum.Font.GothamBlack
  2579. antikickoff.Text = "CrimAura (Off)"
  2580. antikickoff.TextColor3 = Color3.new(0, 0, 0)
  2581. antikickoff.TextSize = 14
  2582. antikickoff.TextWrapped = true
  2583. antikickoff.MouseButton1Down:connect(function()
  2584. antikickmainoff.Visible = false
  2585. antikickmainon.Visible = true
  2586. wait(0.6)
  2587. _G.Crim = true
  2588. while _G.Crim == true do wait() do
  2589. for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
  2590. for o,l in pairs(game.Teams["Inmates"]:GetPlayers()) do
  2591. local tbl_main =
  2592. {
  2593. game:GetService("Workspace")["Prison_ITEMS"].single["Crude Knife"].ITEMPICKUP
  2594. }
  2595. game:GetService("Workspace").Remote.ItemHandler:InvokeServer(unpack(tbl_main))
  2596.  
  2597. wait(0.00001)
  2598. for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
  2599. for o,l in pairs(game.Teams["Inmates"]:GetPlayers()) do
  2600. if v.Name ~= game.Players.LocalPlayer.Name then
  2601. if l.Name ~= game.Players.LocalPlayer.Name then
  2602. local tbl_main =
  2603. {
  2604. v,
  2605. game:GetService("Players").LocalPlayer.Backpack["Crude Knife"]
  2606. }
  2607. game:GetService("ReplicatedStorage").meleeEvent:FireServer(unpack(tbl_main))
  2608. local tbl_main =
  2609. {
  2610. l,
  2611. game:GetService("Players").LocalPlayer.Backpack["Crude Knife"]
  2612. }
  2613. game:GetService("ReplicatedStorage").meleeEvent:FireServer(unpack(tbl_main))
  2614.  
  2615.  
  2616. local Crim = Instance.new("Part")
  2617. Crim.Name = "plr"
  2618. Crim.Parent = workspace
  2619. Crim.Anchored = true
  2620. Crim.Archivable = true
  2621. Crim.CFrame = CFrame.new(9e99, 9e99, 9e99)
  2622. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  2623. Crim.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2624. Crim.Transparency = 1
  2625. Crim.Anchored = true
  2626. Crim.CanCollide = false
  2627. lol = true
  2628. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  2629. Bruh.CanCollide = false
  2630. Bruh.Size = Vector3.new(51.05, 24.12, 54.76)
  2631. Bruh.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  2632. Bruh.Transparency = 1
  2633. wait(0.001)
  2634. lol = false
  2635. if lol == false then
  2636. Bruh.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2637. Bruh.Size = Vector3.new(6, 0.2, 6)
  2638. Bruh.Transparency = 0
  2639. lol = false
  2640. end
  2641. end
  2642. end
  2643. end
  2644. end
  2645. end
  2646. end
  2647. end
  2648. end
  2649. end)
  2650.  
  2651. modguns.Name = "modguns"
  2652. modguns.Parent = scriptsmain
  2653. modguns.BackgroundColor3 = Color3.new(0, 0, 0)
  2654. modguns.Position = UDim2.new(0.137171283, 0, 0.706161141, 0)
  2655. modguns.Size = UDim2.new(0, 329, 0, 50)
  2656. modguns.Font = Enum.Font.GothamBlack
  2657. modguns.Text = "Mod All Guns"
  2658. modguns.TextColor3 = Color3.new(0, 1, 0)
  2659. modguns.TextSize = 30
  2660. modguns.TextWrapped = true
  2661. modguns.MouseButton1Down:connect(function()
  2662. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  2663.  
  2664. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  2665. print(lol)
  2666. end
  2667.  
  2668. local client = game:GetService("Players").LocalPlayer
  2669.  
  2670. for _, child in next, client.Backpack:GetChildren() do
  2671. if child:IsA("Tool") then
  2672. client.Character.Humanoid:UnequipTools()
  2673. end
  2674. end
  2675. local reg = (getreg or debug.getregistry)
  2676. local get = (debug.getupvalues or secret953)
  2677. local client = game:GetService("Players").LocalPlayer
  2678. local render = game:GetService('RunService').RenderStepped
  2679.  
  2680. local function fakeStats()
  2681. function change(t)
  2682. local myStats = {
  2683. ReloadTime = 0,
  2684. FireRate = 0,
  2685. AutoFire = true,
  2686. StoredAmmo = math.huge,
  2687. MaxAmmo = math.huge,
  2688. CurrentAmmo = math.huge,
  2689. }
  2690.  
  2691. for name, fake in next, myStats do
  2692. t[name] = fake
  2693. end
  2694. end
  2695.  
  2696. for k, v in next, reg() do
  2697. if type(v) == "function" then
  2698. local upvals = get(v)
  2699. if upvals and upvals.GunStates then
  2700. change(upvals.GunStates)
  2701. end
  2702. end
  2703. end
  2704. end
  2705.  
  2706. client.Backpack.ChildAdded:connect(function(child)
  2707. if child:IsA("Tool") and child:FindFirstChild("GunInterface") then
  2708. client.Character.Humanoid:EquipTool(child)
  2709.  
  2710. render:wait()
  2711. fakeStats()
  2712. render:wait()
  2713.  
  2714. client.Character.Humanoid:UnequipTools()
  2715. end
  2716. end)
  2717.  
  2718. for _, child in next, client.Backpack:GetChildren() do
  2719. if child:IsA("Tool") and child:FindFirstChild("GunInterface") then
  2720. client.Character.Humanoid:EquipTool(child)
  2721.  
  2722. render:wait()
  2723. fakeStats()
  2724. render:wait()
  2725.  
  2726. client.Character.Humanoid:UnequipTools()
  2727. end
  2728. end
  2729. end)
  2730.  
  2731. for i,v in pairs(game:GetService("Workspace")["Prison_Halls"]:GetChildren()) do
  2732. if v.Name ~= ("floor") then
  2733. if v.Name ~= ("lights") then
  2734. v:Remove()
  2735. end
  2736. end
  2737. end
  2738. for i,v in pairs(game:GetService("Workspace")["Prison_Guard_Outpost"]:GetChildren()) do
  2739. if v.Name ~= ("floor") then
  2740. if v.Name ~= ("lights") then
  2741. v:Remove()
  2742. end
  2743. end
  2744. end
  2745. for i,v in pairs(game:GetService("Workspace")["Prison_Cafeteria"]:GetChildren()) do
  2746. if v.Name ~= ("floor") then
  2747. if v.Name ~= ("lights") then
  2748. v:Remove()
  2749. end
  2750. end
  2751. end
  2752. for i,v in pairs(game:GetService("Workspace")["Prison_Fences"]:GetChildren()) do
  2753. v:Remove()
  2754. end
  2755. for i,v in pairs(game:GetService("Workspace")["Prison_OuterWall"]:GetChildren()) do
  2756. v:Remove()
  2757. end
  2758. for i,v in pairs(game:GetService("Workspace")["Doors"]:GetChildren()) do
  2759. v:Remove()
  2760. end
  2761. for i,v in pairs(game:GetService("Workspace")["Prison_Administration"]:GetChildren()) do
  2762. if v.Name ~= ("light_floor1") then
  2763. if v.Name ~= ("light_floor2") then
  2764. v:Remove()
  2765. end
  2766. end
  2767. end
  2768. for i,v in pairs(game:GetService("Workspace")["Prison_Cellblock"]:GetChildren()) do
  2769. if v.Name ~= ("c_floor") then
  2770. if v.Name ~= ("a_lights") then
  2771. if v.Name ~= ("b_lights") then
  2772. if v.Name ~= ("c_lights") then
  2773. v:Remove()
  2774. end
  2775. end
  2776. end
  2777. end
  2778. end
  2779. wait(0.1)
  2780. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(917.909851, 129.489944, 2328.6958)
  2781. wait(1)
  2782. print("Successfully Loaded PrisonBreaker V1.6")
  2783. game:GetService("StarterGui"):SetCore("SendNotification", {
  2784. Title = "PrisonBreaker V1.6 Loaded";
  2785. Text = "Enjoy destroying the game ;)";
  2786. })
  2787. end)
  2788.  
  2789. Main:Button("Prison life v2",function()
  2790. loadstring(game:HttpGet(('https://raw.githubusercontent.com/XTheMasterX/Scripts/Main/PrisonLife'),true))()
  2791. end)
  2792. local Hub= Win:Tab('Hub')
  2793.  
  2794.  
  2795. Hub:Button("Seek hub",function()
  2796. loadstring(game:HttpGet("https://pastebin.com/raw/U0Hzycrm"))()
  2797. end)
  2798.  
  2799. Hub:Button("Kzs hub 1.5",function()
  2800. loadstring(game:HttpGet("https://raw.githubusercontent.com/KZSHUB/KZS-HUB/main/KZSHUBV1.5", true))()
  2801. end)
  2802.  
  2803. Hub:Button("Psy hub",function()
  2804. -- Gui to Lua
  2805. -- Version: 3.2
  2806.  
  2807. -- Instances:
  2808.  
  2809. local GUI = Instance.new("ScreenGui")
  2810. local OpenFrame = Instance.new("Frame")
  2811. local OpenButton = Instance.new("TextButton")
  2812. local OpenBeautyFrame = Instance.new("Frame")
  2813. local MainFrame = Instance.new("Frame")
  2814. local MainFrameBeautyA = Instance.new("Frame")
  2815. local CloseButton = Instance.new("TextButton")
  2816. local EXPLOIT1 = Instance.new("TextButton")
  2817. local MainFrameCenterBeautyA = Instance.new("Frame")
  2818. local MainFrameCenterBeautyA_2 = Instance.new("Frame")
  2819. local EXPLOIT5 = Instance.new("TextButton")
  2820. local EXPLOIT9 = Instance.new("TextButton")
  2821. local EXPLOIT6 = Instance.new("TextButton")
  2822. local EXPLOIT7 = Instance.new("TextButton")
  2823. local EXPLOIT8 = Instance.new("TextButton")
  2824. local EXPLOIT10 = Instance.new("TextButton")
  2825. local EXPLOIT11 = Instance.new("TextButton")
  2826. local EXPLOIT12 = Instance.new("TextButton")
  2827. local EXPLOIT2 = Instance.new("TextButton")
  2828. local EXPLOIT3 = Instance.new("TextButton")
  2829. local EXPLOIT4 = Instance.new("TextButton")
  2830. local MainFrameBeautyB = Instance.new("Frame")
  2831.  
  2832.  
  2833. --Properties:
  2834.  
  2835. GUI.Name = "GUI"
  2836. GUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  2837.  
  2838. OpenFrame.Name = "OpenFrame"
  2839. OpenFrame.Parent = GUI
  2840. OpenFrame.Active = true
  2841. OpenFrame.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  2842. OpenFrame.BorderSizePixel = 0
  2843. OpenFrame.Position = UDim2.new(0, 0, 0.629155695, 0)
  2844. OpenFrame.Size = UDim2.new(0, 72, 0, 27)
  2845.  
  2846. OpenButton.Name = "OpenButton"
  2847. OpenButton.Parent = OpenFrame
  2848. OpenButton.BackgroundColor3 = Color3.fromRGB(170, 170, 127)
  2849. OpenButton.BackgroundTransparency = 1.000
  2850. OpenButton.BorderSizePixel = 0
  2851. OpenButton.Position = UDim2.new(0.0305736773, 0, 0.116329789, 0)
  2852. OpenButton.Size = UDim2.new(0, 66, 0, 20)
  2853. OpenButton.Font = Enum.Font.Cartoon
  2854. OpenButton.Text = "Open"
  2855. OpenButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  2856. OpenButton.TextScaled = true
  2857. OpenButton.TextSize = 14.000
  2858. OpenButton.TextWrapped = true
  2859. OpenButton.MouseButton1Down:connect(function()
  2860. MainFrame.Visible = true
  2861. OpenFrame.Visible = false
  2862. MainFrameBeautyA.Visible = true
  2863. MainFrameBeautyB.Visible = true
  2864. MainFrameCenterBeautyA_2.Visible = true
  2865. MainFrameCenterBeautyA.Visible = true
  2866. end)
  2867.  
  2868. OpenBeautyFrame.Name = "OpenBeautyFrame"
  2869. OpenBeautyFrame.Parent = OpenFrame
  2870. OpenBeautyFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2871. OpenBeautyFrame.BorderSizePixel = 0
  2872. OpenBeautyFrame.Position = UDim2.new(0.988907099, 0, -0.148148149, 0)
  2873. OpenBeautyFrame.Size = UDim2.new(0, 3, 0, 33)
  2874.  
  2875. MainFrame.Name = "MainFrame"
  2876. MainFrame.Parent = GUI
  2877. MainFrame.Active = true
  2878. MainFrame.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
  2879. MainFrame.BorderSizePixel = 0
  2880. MainFrame.Position = UDim2.new(0.30754894, 0, 0.235294133, 0)
  2881. MainFrame.Size = UDim2.new(0, 412, 0, 263)
  2882. MainFrame.Visible = false
  2883. MainFrame.Draggable = true
  2884.  
  2885. MainFrameBeautyA.Name = "MainFrameBeautyA"
  2886. MainFrameBeautyA.Parent = MainFrame
  2887. MainFrameBeautyA.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  2888. MainFrameBeautyA.BorderSizePixel = 0
  2889. MainFrameBeautyA.Size = UDim2.new(0, 412, 0, 22)
  2890. MainFrameBeautyA.Visible = false
  2891.  
  2892. CloseButton.Name = "CloseButton"
  2893. CloseButton.Parent = MainFrameBeautyA
  2894. CloseButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2895. CloseButton.BackgroundTransparency = 1.000
  2896. CloseButton.BorderSizePixel = 0
  2897. CloseButton.Position = UDim2.new(0.905339777, 0, 0, 0)
  2898. CloseButton.Size = UDim2.new(0, 39, 0, 22)
  2899. CloseButton.Font = Enum.Font.Cartoon
  2900. CloseButton.Text = "Close"
  2901. CloseButton.TextColor3 = Color3.fromRGB(255, 0, 0)
  2902. CloseButton.TextScaled = true
  2903. CloseButton.TextSize = 14.000
  2904. CloseButton.TextWrapped = true
  2905. CloseButton.MouseButton1Down:connect(function()
  2906. OpenFrame.Visible = true
  2907. MainFrame.Visible = false
  2908. MainFrameBeautyA.Visible = false
  2909. MainFrameBeautyB.Visible = false
  2910. MainFrameCenterBeautyA_2.Visible = false
  2911. MainFrameCenterBeautyA.Visible = false
  2912. end)
  2913.  
  2914. EXPLOIT1.Name = "EXPLOIT1"
  2915. EXPLOIT1.Parent = MainFrame
  2916. EXPLOIT1.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  2917. EXPLOIT1.BorderSizePixel = 0
  2918. EXPLOIT1.Position = UDim2.new(0.024271844, 0, 0.129277572, 0)
  2919. EXPLOIT1.Size = UDim2.new(0, 92, 0, 32)
  2920. EXPLOIT1.Font = Enum.Font.Cartoon
  2921. EXPLOIT1.Text = "My Other GUI"
  2922. EXPLOIT1.TextColor3 = Color3.fromRGB(255, 255, 255)
  2923. EXPLOIT1.TextScaled = true
  2924. EXPLOIT1.TextSize = 14.000
  2925. EXPLOIT1.TextWrapped = true
  2926. EXPLOIT1.MouseButton1Down:connect(function()
  2927. loadstring(game:HttpGet(('https://pastebin.com/raw/HCsqYzwa'),true))()
  2928. end)
  2929.  
  2930. MainFrameCenterBeautyA.Name = "MainFrameCenterBeautyA"
  2931. MainFrameCenterBeautyA.Parent = MainFrame
  2932. MainFrameCenterBeautyA.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  2933. MainFrameCenterBeautyA.BorderSizePixel = 0
  2934. MainFrameCenterBeautyA.Position = UDim2.new(0.288834959, 0, 0.129277572, 0)
  2935. MainFrameCenterBeautyA.Size = UDim2.new(0, 8, 0, 185)
  2936. MainFrameCenterBeautyA.Visible = false
  2937.  
  2938. MainFrameCenterBeautyA_2.Name = "MainFrameCenterBeautyA"
  2939. MainFrameCenterBeautyA_2.Parent = MainFrame
  2940. MainFrameCenterBeautyA_2.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  2941. MainFrameCenterBeautyA_2.BorderSizePixel = 0
  2942. MainFrameCenterBeautyA_2.Position = UDim2.new(0.699029148, 0, 0.129277557, 0)
  2943. MainFrameCenterBeautyA_2.Size = UDim2.new(0, 8, 0, 185)
  2944. MainFrameCenterBeautyA_2.Visible = false
  2945.  
  2946. EXPLOIT5.Name = "EXPLOIT5"
  2947. EXPLOIT5.Parent = MainFrame
  2948. EXPLOIT5.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  2949. EXPLOIT5.BorderSizePixel = 0
  2950. EXPLOIT5.Position = UDim2.new(0.388349503, 0, 0.129277572, 0)
  2951. EXPLOIT5.Size = UDim2.new(0, 92, 0, 32)
  2952. EXPLOIT5.Font = Enum.Font.Cartoon
  2953. EXPLOIT5.Text = "JailTabs"
  2954. EXPLOIT5.TextColor3 = Color3.fromRGB(255, 255, 255)
  2955. EXPLOIT5.TextScaled = true
  2956. EXPLOIT5.TextSize = 14.000
  2957. EXPLOIT5.TextWrapped = true
  2958. EXPLOIT5.MouseButton1Down:connect(function()
  2959. loadstring(game:HttpGet(('https://pastebin.com/raw/aV6LcSGf'),true))()
  2960. end)
  2961.  
  2962. EXPLOIT9.Name = "EXPLOIT9"
  2963. EXPLOIT9.Parent = MainFrame
  2964. EXPLOIT9.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  2965. EXPLOIT9.BorderSizePixel = 0
  2966. EXPLOIT9.Position = UDim2.new(0.75242722, 0, 0.129277572, 0)
  2967. EXPLOIT9.Size = UDim2.new(0, 92, 0, 32)
  2968. EXPLOIT9.Font = Enum.Font.Cartoon
  2969. EXPLOIT9.Text = "Counter Pepsi"
  2970. EXPLOIT9.TextColor3 = Color3.fromRGB(255, 255, 255)
  2971. EXPLOIT9.TextScaled = true
  2972. EXPLOIT9.TextSize = 14.000
  2973. EXPLOIT9.TextWrapped = true
  2974. EXPLOIT9.MouseButton1Down:connect(function()
  2975. loadstring(game:HttpGet(('https://pastebin.com/raw/cWTJj3aZ'),true))()
  2976. end)
  2977.  
  2978. EXPLOIT6.Name = "EXPLOIT6"
  2979. EXPLOIT6.Parent = MainFrame
  2980. EXPLOIT6.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  2981. EXPLOIT6.BorderSizePixel = 0
  2982. EXPLOIT6.Position = UDim2.new(0.388349503, 0, 0.323193908, 0)
  2983. EXPLOIT6.Size = UDim2.new(0, 92, 0, 32)
  2984. EXPLOIT6.Font = Enum.Font.Cartoon
  2985. EXPLOIT6.Text = "PsyHub"
  2986. EXPLOIT6.TextColor3 = Color3.fromRGB(255, 255, 255)
  2987. EXPLOIT6.TextScaled = true
  2988. EXPLOIT6.TextSize = 14.000
  2989. EXPLOIT6.TextWrapped = true
  2990. EXPLOIT6.MouseButton1Down:connect(function()
  2991. loadstring(game:GetObjects("rbxassetid://3014051754")[1].Source)()
  2992. end)
  2993.  
  2994. EXPLOIT7.Name = "EXPLOIT7"
  2995. EXPLOIT7.Parent = MainFrame
  2996. EXPLOIT7.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  2997. EXPLOIT7.BorderSizePixel = 0
  2998. EXPLOIT7.Position = UDim2.new(0.388349503, 0, 0.520912528, 0)
  2999. EXPLOIT7.Size = UDim2.new(0, 92, 0, 32)
  3000. EXPLOIT7.Font = Enum.Font.Cartoon
  3001. EXPLOIT7.Text = "IY FE"
  3002. EXPLOIT7.TextColor3 = Color3.fromRGB(255, 255, 255)
  3003. EXPLOIT7.TextScaled = true
  3004. EXPLOIT7.TextSize = 14.000
  3005. EXPLOIT7.TextWrapped = true
  3006. EXPLOIT7.MouseButton1Down:connect(function()
  3007. loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  3008. end)
  3009.  
  3010. EXPLOIT8.Name = "EXPLOIT8"
  3011. EXPLOIT8.Parent = MainFrame
  3012. EXPLOIT8.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  3013. EXPLOIT8.BorderSizePixel = 0
  3014. EXPLOIT8.Position = UDim2.new(0.388349503, 0, 0.711026609, 0)
  3015. EXPLOIT8.Size = UDim2.new(0, 92, 0, 32)
  3016. EXPLOIT8.Font = Enum.Font.Cartoon
  3017. EXPLOIT8.Text = "Arsenal Kill All"
  3018. EXPLOIT8.TextColor3 = Color3.fromRGB(255, 255, 255)
  3019. EXPLOIT8.TextScaled = true
  3020. EXPLOIT8.TextSize = 14.000
  3021. EXPLOIT8.TextWrapped = true
  3022. EXPLOIT8.MouseButton1Down:connect(function()
  3023. print("Script made by FramzDev#8283")
  3024. local c = workspace.CurrentCamera
  3025. local lplr = game.Players.LocalPlayer
  3026.  
  3027. function a(p)
  3028. if p and p.Character then
  3029. pcall(function()
  3030. local t = p.Character.PrimaryPart.CFrame * Vector3.new(0, -0.25, 0)
  3031. c.CFrame = CFrame.new(c.Focus.p, t) * CFrame.new(0, 0, 0.5)
  3032. end)
  3033. end
  3034. end
  3035. for i=1,10 do
  3036. for _,v in pairs(game.Players:GetPlayers()) do
  3037. pcall(function()
  3038. for i=1,15 do
  3039. lplr.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame - v.Character.HumanoidRootPart.CFrame.LookVector*4
  3040. a(v)
  3041. wait()
  3042. end
  3043. end)
  3044. end
  3045. end
  3046. end)
  3047.  
  3048. EXPLOIT10.Name = "EXPLOIT10"
  3049. EXPLOIT10.Parent = MainFrame
  3050. EXPLOIT10.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  3051. EXPLOIT10.BorderSizePixel = 0
  3052. EXPLOIT10.Position = UDim2.new(0.75242722, 0, 0.323193908, 0)
  3053. EXPLOIT10.Size = UDim2.new(0, 92, 0, 32)
  3054. EXPLOIT10.Font = Enum.Font.Cartoon
  3055. EXPLOIT10.Text = "Reviz Admin"
  3056. EXPLOIT10.TextColor3 = Color3.fromRGB(255, 255, 255)
  3057. EXPLOIT10.TextScaled = true
  3058. EXPLOIT10.TextSize = 14.000
  3059. EXPLOIT10.TextWrapped = true
  3060. EXPLOIT10.MouseButton1Down:connect(function()
  3061. loadstring(game:HttpGet(('https://pastebin.com/raw/KNUzQPYS'),true))()
  3062. end)
  3063.  
  3064. EXPLOIT11.Name = "EXPLOIT11"
  3065. EXPLOIT11.Parent = MainFrame
  3066. EXPLOIT11.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  3067. EXPLOIT11.BorderSizePixel = 0
  3068. EXPLOIT11.Position = UDim2.new(0.75242722, 0, 0.520912528, 0)
  3069. EXPLOIT11.Size = UDim2.new(0, 92, 0, 32)
  3070. EXPLOIT11.Font = Enum.Font.Cartoon
  3071. EXPLOIT11.Text = "FE GUI"
  3072. EXPLOIT11.TextColor3 = Color3.fromRGB(255, 255, 255)
  3073. EXPLOIT11.TextScaled = true
  3074. EXPLOIT11.TextSize = 14.000
  3075. EXPLOIT11.TextWrapped = true
  3076. EXPLOIT11.MouseButton1Down:connect(function()
  3077. loadstring(game:HttpGet(('https://pastebin.com/raw/yQaWHmZA'),true))()
  3078. end)
  3079.  
  3080. EXPLOIT12.Name = "EXPLOIT12"
  3081. EXPLOIT12.Parent = MainFrame
  3082. EXPLOIT12.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  3083. EXPLOIT12.BorderSizePixel = 0
  3084. EXPLOIT12.Position = UDim2.new(0.75242722, 0, 0.711026609, 0)
  3085. EXPLOIT12.Size = UDim2.new(0, 92, 0, 32)
  3086. EXPLOIT12.Font = Enum.Font.Cartoon
  3087. EXPLOIT12.Text = "FE Troll Animations"
  3088. EXPLOIT12.TextColor3 = Color3.fromRGB(255, 255, 255)
  3089. EXPLOIT12.TextScaled = true
  3090. EXPLOIT12.TextSize = 14.000
  3091. EXPLOIT12.TextWrapped = true
  3092. EXPLOIT12.MouseButton1Down:connect(function()
  3093. loadstring(game:HttpGet(('https://pastebin.com/raw/35ze0RJb'),true))()
  3094. end)
  3095.  
  3096. EXPLOIT2.Name = "EXPLOIT2"
  3097. EXPLOIT2.Parent = MainFrame
  3098. EXPLOIT2.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  3099. EXPLOIT2.BorderSizePixel = 0
  3100. EXPLOIT2.Position = UDim2.new(0.024271844, 0, 0.323193908, 0)
  3101. EXPLOIT2.Size = UDim2.new(0, 92, 0, 32)
  3102. EXPLOIT2.Font = Enum.Font.Cartoon
  3103. EXPLOIT2.Text = "Fe Invis Kill"
  3104. EXPLOIT2.TextColor3 = Color3.fromRGB(255, 255, 255)
  3105. EXPLOIT2.TextScaled = true
  3106. EXPLOIT2.TextSize = 14.000
  3107. EXPLOIT2.TextWrapped = true
  3108. EXPLOIT2.MouseButton1Down:connect(function()
  3109. loadstring(game:HttpGet(('https://pastebin.com/raw/Lpn5rUDp'),true))()
  3110. end)
  3111.  
  3112. EXPLOIT3.Name = "EXPLOIT3"
  3113. EXPLOIT3.Parent = MainFrame
  3114. EXPLOIT3.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  3115. EXPLOIT3.BorderSizePixel = 0
  3116. EXPLOIT3.Position = UDim2.new(0.024271844, 0, 0.520912528, 0)
  3117. EXPLOIT3.Size = UDim2.new(0, 92, 0, 32)
  3118. EXPLOIT3.Font = Enum.Font.Cartoon
  3119. EXPLOIT3.Text = "Vybe CMD Bar"
  3120. EXPLOIT3.TextColor3 = Color3.fromRGB(255, 255, 255)
  3121. EXPLOIT3.TextScaled = true
  3122. EXPLOIT3.TextSize = 14.000
  3123. EXPLOIT3.TextWrapped = true
  3124. EXPLOIT3.MouseButton1Down:connect(function()
  3125. loadstring(game:HttpGet(('https://pastebin.com/raw/NN5P4nQE'),true))()
  3126. end)
  3127.  
  3128. EXPLOIT4.Name = "EXPLOIT4"
  3129. EXPLOIT4.Parent = MainFrame
  3130. EXPLOIT4.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  3131. EXPLOIT4.BorderSizePixel = 0
  3132. EXPLOIT4.Position = UDim2.new(0.024271844, 0, 0.711026609, 0)
  3133. EXPLOIT4.Size = UDim2.new(0, 92, 0, 32)
  3134. EXPLOIT4.Font = Enum.Font.Cartoon
  3135. EXPLOIT4.Text = "JB Autorob"
  3136. EXPLOIT4.TextColor3 = Color3.fromRGB(255, 255, 255)
  3137. EXPLOIT4.TextScaled = true
  3138. EXPLOIT4.TextSize = 14.000
  3139. EXPLOIT4.TextWrapped = true
  3140. EXPLOIT4.MouseButton1Down:connect(function()
  3141. loadstring(game:GetObjects("rbxassetid://1461971147")[1].Source)()
  3142. end)
  3143.  
  3144. MainFrameBeautyB.Name = "MainFrameBeautyB"
  3145. MainFrameBeautyB.Parent = MainFrame
  3146. MainFrameBeautyB.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  3147. MainFrameBeautyB.BorderSizePixel = 0
  3148. MainFrameBeautyB.Position = UDim2.new(0, 0, 0.916349828, 0)
  3149. MainFrameBeautyB.Size = UDim2.new(0, 412, 0, 22)
  3150. MainFrameBeautyB.Visible = false
  3151.  
  3152. end)
  3153.  
  3154. Hub:Button("Haven hub",function()
  3155. loadstring(game:HttpGet('https://raw.githubusercontent.com/moonthecoder/havenhub4.2/main/havenhub4.2.lua'))()
  3156. end)
  3157. Hub:Button("Remx hub",function()
  3158. loadstring(game:HttpGet(('https://raw.githubusercontent.com/Henry887/RemX-Script-Hub/main/main.lua'),true))()
  3159. end)
  3160. local Creator = Win:Tab('Creator')
  3161.  
  3162. Creator:Label("Channel:sheeshgamer1017")
  3163.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement