BinaricHi

Untitled

Apr 7th, 2024 (edited)
484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()
  2. local Window = Library.CreateLib("Others", "DarkTheme")
  3.  
  4. local Tab = Window:NewTab("here")
  5.  
  6.  
  7. local Section = Tab:NewSection("HERE YA GO")
  8.  
  9.  
  10.  
  11. local gui = Instance.new("ScreenGui")
  12. gui.Name = "patrickGui"
  13. gui.Parent = game.CoreGui
  14.  
  15. --screengui = gui
  16.  
  17.  
  18.  
  19. local TextButton = Instance.new("TextButton")
  20. -- Text
  21. TextButton.Text = "Toggle"
  22. TextButton.TextSize = 24
  23. -- Color
  24. TextButton.TextColor3 = Color3.new(1, 1, 1)
  25. TextButton.BackgroundColor3 = Color3.new(0, 1, 1)
  26. TextButton.BorderColor3 = Color3.new(1, 1, 1)
  27. -- thickness
  28. TextButton.BorderSizePixel = 4
  29. -- Text Code
  30. TextButton.Font = Enum.Font.Code
  31. -- Size
  32. TextButton.Size = UDim2.new(0.2, 0, 0.1, 0)
  33. -- Posisition
  34. TextButton.Position = UDim2.new(0, 0, 0.4, 0)
  35. -- Function
  36. TextButton.MouseButton1Click:Connect (function()
  37. Library:ToggleUI()
  38. end)
  39. TextButton.Parent = gui
  40. TextButton.Draggable = true
  41.  
  42. local cornerUI = Instance.new("UICorner")
  43. cornerUI.CornerRadius = UDim.new(0, 5)
  44. cornerUI.Parent = TextButton
  45.  
  46. local uiStroke = Instance.new("UIStroke")
  47. uiStroke.Color = Color3.new(0, 0, 0)
  48. uiStroke.Thickness = 2
  49. uiStroke.Parent = TextButton
  50. Section:NewButton("disco", "ButtonInfo", function()
  51. while true do
  52. wait(0.5)
  53. game.Lighting.Ambient = Color3.new(math.random(), math.random(), math.random())
  54. game.Lighting.ColorShift_Top = Color3.new(math.random(), math.random(), math.random())
  55. game.Lighting.ColorShift_Bottom = Color3.new(math.random(), math.random(), math.random())
  56. game.Lighting.ShadowColor = Color3.new(math.random(), math.random(), math.random())
  57. end
  58. end)
  59. Section:NewButton("fling all", "ButtonInfo", function()
  60. loadstring(game:HttpGet("https://pastebin.com/raw/zqyDSUWX"))()
  61. end)
  62. Section:NewButton("crash", "ButtonInfo", function()
  63. _G.CrashMinutes = 0 -- changes how long until the game crashes
  64. _G.Disco = true -- changes the changing colors
  65. _G.ChatLol = true -- makes you chat or not
  66. _G.FovChanger = true -- changes your fov
  67. _G.SoundId = "http://www.roblox.com/asset/?id=6817682704" -- set to your sound
  68.  
  69. loadstring(game:HttpGet('https://raw.githubusercontent.com/gooserblx/youhavebeengoosed/main/realshit'))()
  70. end)
  71.  
  72. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  73.  
  74.  
  75.  
Advertisement
Add Comment
Please, Sign In to add comment