Upscalefanatic3

Fantastic Frontier Scripts With Infinite Money Method

Oct 22nd, 2019
9,186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. -- then just delete the next two floor below lost boss and get the chest (infinite money)
  2. -- Game Link: https://www.roblox.com/games/510411669/Fantastic-Frontier-v1-22
  3.  
  4.  
  5. local tool1 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  6. local tool2 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  7. local tool3 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  8. local tool4 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  9. local tool5 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  10. tool1.BinType = "Clone"
  11. tool2.BinType = "GameTool"
  12. tool3.BinType = "Hammer"
  13. tool4.BinType = "Script"
  14. tool5.BinType = "Grab"
  15.  
  16.  
  17. 2=====
  18.  
  19.  
  20. repeat wait()
  21. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  22. local mouse = game.Players.LocalPlayer:GetMouse()
  23. repeat wait() until mouse
  24. local plr = game.Players.LocalPlayer
  25. local torso = plr.Character.Torso
  26. local flying = true
  27. local deb = true
  28. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  29. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  30. local maxspeed = 50
  31. local speed = 0
  32.  
  33. function Fly()
  34. local bg = Instance.new("BodyGyro", torso)
  35. bg.P = 9e4
  36. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  37. bg.cframe = torso.CFrame
  38. local bv = Instance.new("BodyVelocity", torso)
  39. bv.velocity = Vector3.new(0,0.1,0)
  40. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  41. repeat wait()
  42. plr.Character.Humanoid.PlatformStand = true
  43. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  44. speed = speed+.5+(speed/maxspeed)
  45. if speed > maxspeed then
  46. speed = maxspeed
  47. end
  48. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  49. speed = speed-1
  50. if speed < 0 then
  51. speed = 0
  52. end
  53. end
  54. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  55. 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
  56. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  57. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  58. 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
  59. else
  60. bv.velocity = Vector3.new(0,0.1,0)
  61. end
  62. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  63. until not flying
  64. ctrl = {f = 0, b = 0, l = 0, r = 0}
  65. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  66. speed = 0
  67. bg:Destroy()
  68. bv:Destroy()
  69. plr.Character.Humanoid.PlatformStand = false
  70. end
  71. mouse.KeyDown:connect(function(key)
  72. if key:lower() == "e" then
  73. if flying then flying = false
  74. else
  75. flying = true
  76. Fly()
  77. end
  78. elseif key:lower() == "w" then
  79. ctrl.f = 1
  80. elseif key:lower() == "s" then
  81. ctrl.b = -1
  82. elseif key:lower() == "a" then
  83. ctrl.l = -1
  84. elseif key:lower() == "d" then
  85. ctrl.r = 1
  86. end
  87. end)
  88. mouse.KeyUp:connect(function(key)
  89. if key:lower() == "w" then
  90. ctrl.f = 0
  91. elseif key:lower() == "s" then
  92. ctrl.b = 0
  93. elseif key:lower() == "a" then
  94. ctrl.l = 0
  95. elseif key:lower() == "d" then
  96. ctrl.r = 0
  97. end
  98. end)
  99. Fly()
Add Comment
Please, Sign In to add comment