Advertisement
Guest User

fe roblox trolling gui OP

a guest
Feb 2nd, 2025
7,383
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- MY YOUTUBE CHANNEL: SMOKES - EXPLOITS
  2.  
  3. local player = game.Players.LocalPlayer
  4. local character = player.Character or player.CharacterAdded:Wait()
  5. local isR6 = character:FindFirstChild("Torso") ~= nil
  6.  
  7. -- Notification Function
  8. local function showNotification(message)
  9. local notificationGui = Instance.new("ScreenGui")
  10. notificationGui.Name = "NotificationGui"
  11. notificationGui.Parent = game.CoreGui
  12.  
  13. local notificationFrame = Instance.new("Frame")
  14. notificationFrame.Size = UDim2.new(0, 300, 0, 50)
  15. notificationFrame.Position = UDim2.new(0.5, -150, 1, -60)
  16. notificationFrame.AnchorPoint = Vector2.new(0.5, 1)
  17. notificationFrame.BackgroundColor3 = Color3.fromRGB(60, 60, 255) -- Blue color
  18. notificationFrame.BorderSizePixel = 0
  19. notificationFrame.Parent = notificationGui
  20.  
  21. local uicorner = Instance.new("UICorner")
  22. uicorner.CornerRadius = UDim.new(0, 10)
  23. uicorner.Parent = notificationFrame
  24.  
  25. local textLabel = Instance.new("TextLabel")
  26. textLabel.Size = UDim2.new(1, -20, 1, 0)
  27. textLabel.Position = UDim2.new(0, 10, 0, 0)
  28. textLabel.BackgroundTransparency = 1
  29. textLabel.Text = message .. " | by pyst"
  30. textLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  31. textLabel.Font = Enum.Font.SourceSansBold
  32. textLabel.TextSize = 18
  33. textLabel.TextXAlignment = Enum.TextXAlignment.Left
  34. textLabel.Parent = notificationFrame
  35.  
  36. notificationFrame.BackgroundTransparency = 1
  37. textLabel.TextTransparency = 1
  38.  
  39. game:GetService("TweenService"):Create(
  40. notificationFrame,
  41. TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.Out),
  42. {BackgroundTransparency = 0}
  43. ):Play()
  44.  
  45. game:GetService("TweenService"):Create(
  46. textLabel,
  47. TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.Out),
  48. {TextTransparency = 0}
  49. ):Play()
  50.  
  51. task.delay(5, function()
  52. game:GetService("TweenService"):Create(
  53. notificationFrame,
  54. TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.In),
  55. {BackgroundTransparency = 1}
  56. ):Play()
  57.  
  58. game:GetService("TweenService"):Create(
  59. textLabel,
  60. TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.In),
  61. {TextTransparency = 1}
  62. ):Play()
  63.  
  64. task.delay(0.5, function()
  65. notificationGui:Destroy()
  66. end)
  67. end)
  68. end
  69.  
  70. -- Show notification based on rig type
  71. if isR6 then
  72. showNotification("🌟 R6 detected!")
  73. else
  74. showNotification("✨ R15 detected!")
  75. end
  76.  
  77. -- Create Screen GUI
  78. local gui = Instance.new("ScreenGui")
  79. gui.Name = "BangGui"
  80. gui.Parent = game.CoreGui
  81.  
  82. -- Main Frame
  83. local mainFrame = Instance.new("Frame")
  84. mainFrame.Size = UDim2.new(0, 300, 0, 300)
  85. mainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  86. mainFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  87. mainFrame.BackgroundColor3 = Color3.fromRGB(80, 80, 255) -- Deep Blue
  88. mainFrame.BorderSizePixel = 0
  89. mainFrame.Parent = gui
  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