The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
FE Fling *OP* script pastebin roblox
By FE Fling *OP* on 2024-09-22 08:00 am | Syntax: LUA | Views: 10



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  
  2.  
  3.  
  4. spawn(function()
  5. local message = Instance.new("Message",workspace)
  6. message.Text = "Loaded press z to execute inviseble , press x to respawn)"
  7. wait(0.5)
  8. message:Destroy()
  9. local message = Instance.new("Message",workspace)
  10. message.Text = "Also sub to anarchywithdamian)"
  11. wait(0.5)
  12. message:Destroy()
  13. end)
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. local mouse = game.Players.LocalPlayer:GetMouse()
  23.  
  24. local groot = nil
  25.  
  26. mouse.KeyDown:connect(function(k)
  27.  
  28.         if k == "z" then
  29.  
  30.  
  31.  
  32. spawn(function()
  33. local message = Instance.new("Message",workspace)
  34. message.Text = "Fe Invisible Fling By Diemiers#4209 Loaded (wait 11 seconds to load)"
  35. wait(11)
  36. message:Destroy()
  37. end)
  38.  
  39.  
  40. local ch = game.Players.LocalPlayer.Character
  41. local prt=Instance.new("Model", workspace)
  42. local z1 =  Instance.new("Part", prt)
  43. z1.Name="Torso"
  44. z1.CanCollide = false
  45. z1.Anchored = true
  46. local z2  =Instance.new("Part", prt)
  47. z2.Name="Head"
  48. z2.Anchored = true
  49. z2.CanCollide = false
  50. local z3 =Instance.new("Humanoid", prt)
  51. z3.Name="Humanoid"
  52. z1.Position = Vector3.new(0,9999,0)
  53. z2.Position = Vector3.new(0,9991,0)
  54.  game.Players.LocalPlayer.Character=prt
  55. wait(5)
  56. game.Players.LocalPlayer.Character=ch
  57. wait(6)
  58.  
  59.  
  60. local plr = game.Players.LocalPlayer
  61. mouse = plr:GetMouse()
  62.  
  63. local Hum = Instance.new("Humanoid")
  64. Hum.Parent = game.Players.LocalPlayer.Character
  65.  
  66.  
  67. local root =  game.Players.LocalPlayer.Character.HumanoidRootPart
  68.  
  69.  
  70. for i,v in pairs(plr.Character:GetChildren()) do
  71.  
  72.         if v ~= root and  v.Name ~= "Humanoid" then
  73.  
  74.                 v:Destroy()
  75.  
  76.         end
  77.  
  78.  
  79. end
  80.  
  81. workspace.CurrentCamera.CameraSubject = root
  82.  
  83. local se = Instance.new("SelectionBox",root)
  84. se.Adornee = root
  85.  
  86.  
  87. game:GetService('RunService').Stepped:connect(function()
  88. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  89. end)
  90. game:GetService('RunService').RenderStepped:connect(function()
  91. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  92. end)
  93.  
  94.  
  95. power = 999999 -- change this to make it more or less powerful
  96.  
  97. power = power*10
  98.  
  99. ---
  100. wait(.1)
  101. local bambam = Instance.new("BodyThrust")
  102. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  103. bambam.Force = Vector3.new(power,0,power)
  104. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  105.  
  106.  
  107.  
  108.  
  109.  
  110. local plr = game.Players.LocalPlayer
  111. local torso = root
  112. local flying = true
  113. local deb = true
  114. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  115. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  116. local maxspeed = 120
  117. local speed = 15
  118.  
  119.  
  120. ---local bambam = Instance.new("BodyThrust")
  121. ---bambam.Parent = torso
  122. --bambam.Force = Vector3.new(9999999,0,9999999)
  123. --bambam.Location = torso.Position
  124.  
  125.  
  126. ---
  127. groot = root
  128.  
  129. function Fly()
  130. local bg = Instance.new("BodyGyro", torso)
  131. bg.P = 9e4
  132. bg.maxTorque = Vector3.new(0, 0, 0)
  133. bg.cframe = torso.CFrame
  134. local bv = Instance.new("BodyVelocity", torso)
  135. bv.velocity = Vector3.new(0,0,0)
  136. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  137. repeat wait()
  138.  
  139. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  140. speed = speed+.2
  141. if speed > maxspeed then
  142. speed = maxspeed
  143. end
  144. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  145. speed = speed-1
  146. if speed < 0 then
  147. speed = 0
  148. end
  149. end
  150. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  151. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  152. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  153. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  154. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  155. else
  156. bv.velocity = Vector3.new(0,0.1,0)
  157. end
  158.  
  159. until not flying
  160. ctrl = {f = 0, b = 0, l = 0, r = 0}
  161. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  162. speed = 0
  163. bg:Destroy()
  164. bv:Destroy()
  165.  
  166. end
  167. mouse.KeyDown:connect(function(key)
  168. if key:lower() == "e" then
  169. if flying then flying = false
  170. else
  171. flying = true
  172. Fly()
  173. end
  174. elseif key:lower() == "w" then
  175. ctrl.f = 1
  176. elseif key:lower() == "s" then
  177. ctrl.b = -1
  178. elseif key:lower() == "a" then
  179. ctrl.l = -1
  180. elseif key:lower() == "d" then
  181. ctrl.r = 1
  182. end
  183. end)
  184. mouse.KeyUp:connect(function(key)
  185. if key:lower() == "w" then
  186. ctrl.f = 0
  187. elseif key:lower() == "s" then
  188. ctrl.b = 0
  189. elseif key:lower() == "a" then
  190. ctrl.l = 0
  191. elseif key:lower() == "d" then
  192. ctrl.r = 0
  193. elseif key:lower() == "r" then
  194.  
  195. end
  196. end)
  197. Fly()
  198.  
  199.  
  200.  
  201.         elseif k == "x" then
  202.  
  203.  
  204.                 spawn(function()
  205. local message = Instance.new("Message",workspace)
  206. message.Text = "Respawning dont spam"
  207. wait(1)
  208. message:Destroy()
  209. end)
  210.  
  211.                 local saved = groot.Position
  212.  
  213.  game.Players.LocalPlayer.Character=prt
  214. wait(5)
  215.  game.Players.LocalPlayer.Character=ch
  216. local poop = nil
  217.                 repeat wait() poop = game.Players.LocalPlayer.Character:FindFirstChild("Head") until poop ~= nil
  218.                 wait(1)
  219.                 game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(saved)
  220.  
  221.         end
  222.  
  223.  
  224. end)



  • Recent Roblox Scripts