Advertisement
Guest User

ROBLOX FE ANIMATION PACK

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