Advertisement
robloxboblox

Untitled

Oct 12th, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.00 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScrollingFrame = Instance.new("ScrollingFrame")
  5. local TextButton = Instance.new("TextButton")
  6. local UIGridLayout = Instance.new("UIGridLayout")
  7. local TextButton_2 = Instance.new("TextButton")
  8. local TextButton_3 = Instance.new("TextButton")
  9. --Properties:
  10. ScrollingFrame.Parent = game.StarterGui.ScreenGui
  11. ScrollingFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  12. ScrollingFrame.Position = UDim2.new(0.441441417, 0, 0.0503067374, 0)
  13. ScrollingFrame.Size = UDim2.new(0, 215, 0, 211)
  14. ScrollingFrame.Visible = false
  15.  
  16. TextButton.Parent = ScrollingFrame
  17. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  18. TextButton.Size = UDim2.new(0, 111, 0, 100)
  19. TextButton.Font = Enum.Font.SourceSans
  20. TextButton.Text = "God"
  21. TextButton.TextColor3 = Color3.new(0, 0, 0)
  22. TextButton.TextScaled = true
  23. TextButton.TextSize = 14
  24. TextButton.TextWrapped = true
  25.  
  26. UIGridLayout.Parent = ScrollingFrame
  27. UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  28.  
  29. TextButton_2.Parent = ScrollingFrame
  30. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  31. TextButton_2.Size = UDim2.new(0, 111, 0, 100)
  32. TextButton_2.Font = Enum.Font.SourceSans
  33. TextButton_2.Text = "Fly"
  34. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  35. TextButton_2.TextScaled = true
  36. TextButton_2.TextSize = 14
  37. TextButton_2.TextWrapped = true
  38.  
  39. TextButton_3.Parent = ScrollingFrame
  40. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  41. TextButton_3.Size = UDim2.new(0, 111, 0, 100)
  42. TextButton_3.Font = Enum.Font.SourceSans
  43. TextButton_3.Text = "Booga Fucker"
  44. TextButton_3.TextColor3 = Color3.new(0, 0, 0)
  45. TextButton_3.TextScaled = true
  46. TextButton_3.TextSize = 14
  47. TextButton_3.TextWrapped = true
  48. -- Scripts:
  49. function SCRIPT_ZOEI66_FAKESCRIPT() -- TextButton.LocalScript
  50. local script = Instance.new('LocalScript')
  51. script.Parent = TextButton
  52. script.Parent.MouseButton1Click:Connect(function()
  53. lplayer.Character.Humanoid.Name = 1
  54. local l = lplayer.Character["1"]:Clone()
  55. l.Parent = lplayer.Character
  56. l.Name = "Humanoid"
  57. wait(0.1)
  58. lplayer.Character["1"]:Destroy()
  59. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  60. lplayer.Character.Animate.Disabled = true
  61. wait(0.1)
  62. lplayer.Character.Animate.Disabled = false
  63. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  64. game:GetService("StarterGui"):SetCore("SendNotification", {
  65. Title = "FE Godmode enabled";
  66. Text = "Mah name is IMPOSIBLE to destroy heh.";
  67. })
  68. end
  69. end)
  70.  
  71. end
  72. coroutine.resume(coroutine.create(SCRIPT_ZOEI66_FAKESCRIPT))
  73. function SCRIPT_HPER77_FAKESCRIPT() -- TextButton_2.LocalScript
  74. local script = Instance.new('LocalScript')
  75. script.Parent = TextButton_2
  76. script.Parent.MouseButton1Click:Connect(function()
  77. repeat wait()
  78. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  79. local mouse = game.Players.LocalPlayer:GetMouse()
  80. repeat wait() until mouse
  81. local plr = game.Players.LocalPlayer
  82. local torso = plr.Character.Torso
  83. local flying = true
  84. local deb = true
  85. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  86. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  87. local maxspeed = 50
  88. local speed = 0
  89.  
  90. function Fly()
  91. local bg = Instance.new("BodyGyro", torso)
  92. bg.P = 9e4
  93. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  94. bg.cframe = torso.CFrame
  95. local bv = Instance.new("BodyVelocity", torso)
  96. bv.velocity = Vector3.new(0,0.1,0)
  97. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  98. repeat wait()
  99. plr.Character.Humanoid.PlatformStand = true
  100. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  101. speed = speed+.5+(speed/maxspeed)
  102. if speed > maxspeed then
  103. speed = maxspeed
  104. end
  105. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  106. speed = speed-1
  107. if speed < 0 then
  108. speed = 0
  109. end
  110. end
  111. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  112. 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
  113. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  114. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  115. 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
  116. else
  117. bv.velocity = Vector3.new(0,0.1,0)
  118. end
  119. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  120. until not flying
  121. ctrl = {f = 0, b = 0, l = 0, r = 0}
  122. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  123. speed = 0
  124. bg:Destroy()
  125. bv:Destroy()
  126. plr.Character.Humanoid.PlatformStand = false
  127. end
  128. mouse.KeyDown:connect(function(key)
  129. if key:lower() == "e" then
  130. if flying then flying = false
  131. else
  132. flying = true
  133. Fly()
  134. end
  135. elseif key:lower() == "w" then
  136. ctrl.f = 1
  137. elseif key:lower() == "s" then
  138. ctrl.b = -1
  139. elseif key:lower() == "a" then
  140. ctrl.l = -1
  141. elseif key:lower() == "d" then
  142. ctrl.r = 1
  143. end
  144. end)
  145. mouse.KeyUp:connect(function(key)
  146. if key:lower() == "w" then
  147. ctrl.f = 0
  148. elseif key:lower() == "s" then
  149. ctrl.b = 0
  150. elseif key:lower() == "a" then
  151. ctrl.l = 0
  152. elseif key:lower() == "d" then
  153. ctrl.r = 0
  154. end
  155. end)
  156. Fly()
  157. end)
  158.  
  159. end
  160. coroutine.resume(coroutine.create(SCRIPT_HPER77_FAKESCRIPT))
  161. function SCRIPT_PHDM78_FAKESCRIPT() -- TextButton_3.LocalScript
  162. local script = Instance.new('LocalScript')
  163. script.Parent = TextButton_3
  164. script.Parent.MouseButton1Click:Connect(function()
  165. loadstring(game:HttpGet(('https://pastebin.com/raw/Ww628Mma'),true))()
  166. end)
  167.  
  168. end
  169. coroutine.resume(coroutine.create(SCRIPT_PHDM78_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement