Advertisement
xvc200

banggui

Feb 13th, 2025
7,318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.94 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local character = player.Character or player.CharacterAdded:Wait()
  3. local isR6 = character:FindFirstChild("Torso") ~= nil
  4.  
  5. -- Notification Function
  6. local function showNotification(message)
  7. local notificationGui = Instance.new("ScreenGui")
  8. notificationGui.Name = "NotificationGui"
  9. notificationGui.Parent = game.CoreGui
  10.  
  11. local notificationFrame = Instance.new("Frame")
  12. notificationFrame.Size = UDim2.new(0, 300, 0, 50)
  13. notificationFrame.Position = UDim2.new(0.5, -150, 1, -60)
  14. notificationFrame.AnchorPoint = Vector2.new(0.5, 1)
  15. notificationFrame.BackgroundColor3 = Color3.fromRGB(60, 60, 255) -- Blue color
  16. notificationFrame.BorderSizePixel = 0
  17. notificationFrame.Parent = notificationGui
  18.  
  19. local uicorner = Instance.new("UICorner")
  20. uicorner.CornerRadius = UDim.new(0, 10)
  21. uicorner.Parent = notificationFrame
  22.  
  23. local textLabel = Instance.new("TextLabel")
  24. textLabel.Size = UDim2.new(1, -20, 1, 0)
  25. textLabel.Position = UDim2.new(0, 10, 0, 0)
  26. textLabel.BackgroundTransparency = 1
  27. textLabel.Text = message .. " | by pyst"
  28. textLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  29. textLabel.Font = Enum.Font.SourceSansBold
  30. textLabel.TextSize = 18
  31. textLabel.TextXAlignment = Enum.TextXAlignment.Left
  32. textLabel.Parent = notificationFrame
  33.  
  34. notificationFrame.BackgroundTransparency = 1
  35. textLabel.TextTransparency = 1
  36.  
  37. game:GetService("TweenService"):Create(
  38. notificationFrame,
  39. TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.Out),
  40. {BackgroundTransparency = 0}
  41. ):Play()
  42.  
  43. game:GetService("TweenService"):Create(
  44. textLabel,
  45. TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.Out),
  46. {TextTransparency = 0}
  47. ):Play()
  48.  
  49. task.delay(5, function()
  50. game:GetService("TweenService"):Create(
  51. notificationFrame,
  52. TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.In),
  53. {BackgroundTransparency = 1}
  54. ):Play()
  55.  
  56. game:GetService("TweenService"):Create(
  57. textLabel,
  58. TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.In),
  59. {TextTransparency = 1}
  60. ):Play()
  61.  
  62. task.delay(0.5, function()
  63. notificationGui:Destroy()
  64. end)
  65. end)
  66. end
  67.  
  68. -- Show notification based on rig type
  69. if isR6 then
  70. showNotification("🌟 R6 detected!")
  71. else
  72. showNotification("✨ R15 detected!")
  73. end
  74.  
  75. -- Create Screen GUI
  76. local gui = Instance.new("ScreenGui")
  77. gui.Name = "BangGui"
  78. gui.Parent = game.CoreGui
  79.  
  80. -- Main Frame
  81. local mainFrame = Instance.new("Frame")
  82. mainFrame.Size = UDim2.new(0, 300, 0, 300)
  83. mainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  84. mainFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  85. mainFrame.BackgroundColor3 = Color3.fromRGB(80, 80, 255) -- Deep Blue
  86. mainFrame.BorderSizePixel = 0
  87. mainFrame.Parent = gui
  88. mainFrame.Active = true
  89. mainFrame.Draggable = true
  90.  
  91. local uicorner = Instance.new("UICorner")
  92. uicorner.CornerRadius = UDim.new(0, 20)
  93. uicorner.Parent = mainFrame
  94.  
  95. -- Title
  96. local title = Instance.new("TextLabel")
  97. title.Size = UDim2.new(1, -60, 0, 30)
  98. title.Position = UDim2.new(0, 10, 0, 0)
  99. title.BackgroundTransparency = 1
  100. title.Text = "🎨 Choose a Script"
  101. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  102. title.Font = Enum.Font.SourceSansBold
  103. title.TextSize = 24
  104. title.TextXAlignment = Enum.TextXAlignment.Left
  105. title.Parent = mainFrame
  106.  
  107. -- Close Button
  108. local closeButton = Instance.new("TextButton")
  109. closeButton.Size = UDim2.new(0, 30, 0, 30)
  110. closeButton.Position = UDim2.new(1, -40, 0, 0)
  111. closeButton.BackgroundColor3 = Color3.fromRGB(255, 100, 100) -- Red
  112. closeButton.Text = "X"
  113. closeButton.Font = Enum.Font.SourceSansBold
  114. closeButton.TextSize = 20
  115. closeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  116. closeButton.Parent = mainFrame
  117.  
  118. local closeCorner = Instance.new("UICorner")
  119. closeCorner.CornerRadius = UDim.new(0, 10)
  120. closeCorner.Parent = closeButton
  121.  
  122. closeButton.MouseButton1Click:Connect(function()
  123. gui:Destroy()
  124. end)
  125.  
  126. -- Minimize Button
  127. local minimizeButton = Instance.new("TextButton")
  128. minimizeButton.Size = UDim2.new(0, 30, 0, 30)
  129. minimizeButton.Position = UDim2.new(1, -80, 0, 0)
  130. minimizeButton.BackgroundColor3 = Color3.fromRGB(255, 200, 0) -- Orange
  131. minimizeButton.Text = "-"
  132. minimizeButton.Font = Enum.Font.SourceSansBold
  133. minimizeButton.TextSize = 20
  134. minimizeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  135. minimizeButton.Parent = mainFrame
  136.  
  137. local minimizeCorner = Instance.new("UICorner")
  138. minimizeCorner.CornerRadius = UDim.new(0, 10)
  139. minimizeCorner.Parent = minimizeButton
  140.  
  141. local minimized = false
  142. minimizeButton.MouseButton1Click:Connect(function()
  143. minimized = not minimized
  144. if minimized then
  145. mainFrame:TweenSize(UDim2.new(0, 300, 0, 30), Enum.EasingDirection.In, Enum.EasingStyle.Quint, 0.5)
  146. else
  147. mainFrame:TweenSize(UDim2.new(0, 300, 0, 300), Enum.EasingDirection.Out, Enum.EasingStyle.Quint, 0.5)
  148. end
  149. end)
  150.  
  151. -- Scrolling Frame
  152. local scrollingFrame = Instance.new("ScrollingFrame")
  153. scrollingFrame.Size = UDim2.new(1, -20, 1, -50)
  154. scrollingFrame.Position = UDim2.new(0, 10, 0, 40)
  155. scrollingFrame.BackgroundTransparency = 1
  156. scrollingFrame.CanvasSize = UDim2.new(0, 0, 0, 300)
  157. scrollingFrame.ScrollBarThickness = 6
  158. scrollingFrame.Parent = mainFrame
  159.  
  160. local layout = Instance.new("UIListLayout")
  161. layout.Padding = UDim.new(0, 10)
  162. layout.HorizontalAlignment = Enum.HorizontalAlignment.Center
  163. layout.Parent = scrollingFrame
  164.  
  165. -- Buttons Data
  166. local buttons = {
  167. {name = "🎯 Bang V2", r6 = "https://pastebin.com/raw/aPSHMV6K", r15 = "https://pastebin.com/raw/1ePMTt9n"},
  168. {name = "🎉 Get Banged", r6 = "https://pastebin.com/raw/zHbw7ND1", r15 = "https://pastebin.com/raw/7hvcjDnW"},
  169. {name = "💥 Suck", r6 = "https://pastebin.com/raw/SymCfnAW", r15 = "https://pastebin.com/raw/p8yxRfr4"},
  170. {name = "🔥 Get Suc", r6 = "https://pastebin.com/raw/FPu4e2Qh", r15 = "https://pastebin.com/raw/DyPP2tAF"},
  171. {name = "⚡ Jerk", r6 = "https://pastefy.app/wa3v2Vgm/raw", r15 = "https://pastefy.app/YZoglOyJ/raw"}
  172. }
  173.  
  174. for _, buttonData in ipairs(buttons) do
  175. local button = Instance.new("TextButton")
  176. button.Size = UDim2.new(0.8, 0, 0, 40)
  177. button.BackgroundColor3 = Color3.fromRGB(math.random(100, 255), math.random(100, 255), math.random(100, 255)) -- Random colors
  178. button.Text = buttonData.name
  179. button.Font = Enum.Font.SourceSansBold
  180. button.TextSize = 20
  181. button.TextColor3 = Color3.fromRGB(255, 255, 255)
  182. button.Parent = scrollingFrame
  183.  
  184. local uicorner = Instance.new("UICorner")
  185. uicorner.CornerRadius = UDim.new(0, 10)
  186. uicorner.Parent = button
  187.  
  188. button.MouseButton1Click:Connect(function()
  189. if isR6 then
  190. loadstring(game:HttpGet(buttonData.r6))()
  191. else
  192. loadstring(game:HttpGet(buttonData.r15))()
  193. end
  194. end)
  195. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement