Advertisement
SalatBlitz123

AirPlane 1|2|3

Mar 9th, 2020
1,389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local GUI = Instance.new("ScreenGui")
  7. local OpenGui = Instance.new("TextButton")
  8. local Main = Instance.new("Frame")
  9. local Welcome = Instance.new("TextLabel")
  10. local Speed = Instance.new("TextButton")
  11. local Jump = Instance.new("TextButton")
  12. local Noclip = Instance.new("TextButton")
  13. local ClickTp = Instance.new("TextButton")
  14. local Close = Instance.new("TextButton")
  15.  
  16. --Properties:
  17.  
  18. GUI.Name = "GUI"
  19. GUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  20. GUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. OpenGui.Name = "OpenGui"
  23. OpenGui.Parent = GUI
  24. OpenGui.BackgroundColor3 = Color3.fromRGB(88, 88, 88)
  25. OpenGui.Position = UDim2.new(0, 0, 0.537078679, 0)
  26. OpenGui.Size = UDim2.new(0, 104, 0, 30)
  27. OpenGui.Font = Enum.Font.GothamBlack
  28. OpenGui.Text = "Open"
  29. OpenGui.TextColor3 = Color3.fromRGB(0, 0, 0)
  30. OpenGui.TextSize = 14.000
  31. OpenGui.MouseButton1Down:connect(function()
  32. OpenGui.Visible = false
  33. Main.Visible = true
  34. end)
  35.  
  36. Main.Name = "Main"
  37. Main.Parent = GUI
  38. Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  39. Main.Position = UDim2.new(0.346023679, 0, 0.161797747, 0)
  40. Main.Selectable = true
  41. Main.Size = UDim2.new(0, 295, 0, 324)
  42. Main.Draggable = true
  43. Main.Visible = false
  44. Main.Active = true
  45.  
  46. Welcome.Name = "Welcome"
  47. Welcome.Parent = Main
  48. Welcome.BackgroundColor3 = Color3.fromRGB(88, 88, 88)
  49. Welcome.Position = UDim2.new(-0.128813565, 0, 0, 0)
  50. Welcome.Size = UDim2.new(0, 371, 0, 50)
  51. Welcome.Font = Enum.Font.GothamBlack
  52. Welcome.Text = "Script on AirPlane 1|2|3"
  53. Welcome.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. Welcome.TextSize = 14.000
  55.  
  56. Speed.Name = "Speed"
  57. Speed.Parent = Main
  58. Speed.BackgroundColor3 = Color3.fromRGB(88, 88, 88)
  59. Speed.Position = UDim2.new(0.159322038, 0, 0.175925925, 0)
  60. Speed.Size = UDim2.new(0, 200, 0, 50)
  61. Speed.Font = Enum.Font.SourceSansItalic
  62. Speed.Text = "Speed Hack"
  63. Speed.TextColor3 = Color3.fromRGB(0, 0, 0)
  64. Speed.TextSize = 14.000
  65. Speed.MouseButton1Down:connect(function()
  66. game:GetService("Players").LocalPlayer.Character:FindFirstChild("Humanoid").WalkSpeed = 35
  67. end)
  68.  
  69. Jump.Name = "Jump"
  70. Jump.Parent = Main
  71. Jump.BackgroundColor3 = Color3.fromRGB(88, 88, 88)
  72. Jump.Position = UDim2.new(0.159322038, 0, 0.385802478, 0)
  73. Jump.Size = UDim2.new(0, 200, 0, 50)
  74. Jump.Font = Enum.Font.SourceSansItalic
  75. Jump.Text = "Jump Hack"
  76. Jump.TextColor3 = Color3.fromRGB(0, 0, 0)
  77. Jump.TextSize = 14.000
  78. Jump.MouseButton1Down:connect(function()
  79. game:GetService("Players").LocalPlayer.Character:FindFirstChild("Humanoid").JumpPower = 65
  80. end)
  81.  
  82. Noclip.Name = "Noclip"
  83. Noclip.Parent = Main
  84. Noclip.BackgroundColor3 = Color3.fromRGB(88, 88, 88)
  85. Noclip.Position = UDim2.new(0.159322038, 0, 0.589506209, 0)
  86. Noclip.Size = UDim2.new(0, 200, 0, 50)
  87. Noclip.Font = Enum.Font.SourceSansItalic
  88. Noclip.Text = "Noclip (e)"
  89. Noclip.TextColor3 = Color3.fromRGB(0, 0, 0)
  90. Noclip.TextSize = 14.000
  91. Noclip.MouseButton1Down:connect(function()
  92. local noclip = false
  93. game:GetService('RunService').Stepped:connect(function()
  94. if noclip then
  95. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  96. end
  97. end)
  98.  
  99. local plr = game.Players.LocalPlayer
  100. local mouse = plr:GetMouse()
  101. mouse.KeyDown:connect(function(key)
  102. if key == 'e' then
  103. noclip = not noclip
  104. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  105. end
  106. end)
  107. end)
  108.  
  109. ClickTp.Name = "ClickTp"
  110. ClickTp.Parent = Main
  111. ClickTp.BackgroundColor3 = Color3.fromRGB(88, 88, 88)
  112. ClickTp.Position = UDim2.new(0.159322038, 0, 0.796296299, 0)
  113. ClickTp.Size = UDim2.new(0, 200, 0, 50)
  114. ClickTp.Font = Enum.Font.SourceSansItalic
  115. ClickTp.Text = "Click Tp (r)"
  116. ClickTp.TextColor3 = Color3.fromRGB(0, 0, 0)
  117. ClickTp.TextSize = 14.000
  118. ClickTp.MouseButton1Down:connect(function()
  119. plr = game.Players.LocalPlayer
  120. mouse = plr:GetMouse()
  121. mouse.KeyDown:connect(function(key)
  122. if key == "r" then
  123. if mouse.Target then
  124. plr.Character.HumanoidRootPart.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  125. end
  126. end
  127. end)
  128. end)
  129.  
  130. Close.Name = "Close"
  131. Close.Parent = Main
  132. Close.BackgroundColor3 = Color3.fromRGB(88, 88, 88)
  133. Close.BorderSizePixel = 0
  134. Close.Position = UDim2.new(1.02711868, 0, 0, 0)
  135. Close.Size = UDim2.new(0, 30, 0, 50)
  136. Close.Font = Enum.Font.GothamBlack
  137. Close.Text = "X"
  138. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  139. Close.TextSize = 14.000
  140. Close.MouseButton1Down:connect(function()
  141. Main.Visible = false
  142. OpenGui.Visible = true
  143. end)
  144.  
  145. -- Scripts:
  146.  
  147. local function TEDZ_fake_script() -- Main.LocalScript
  148. local script = Instance.new('LocalScript', Main)
  149.  
  150. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  151. counter=0
  152.  
  153. while wait(0.1) do
  154. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  155. counter = counter + 0.01
  156. end
  157. end
  158. coroutine.wrap(TEDZ_fake_script)()
  159.  
  160. --! รคlคt#0437
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement