retpee

Airplane 4 [Story] [Roblox Exploit Gui]

Jul 12th, 2021 (edited)
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.20 KB | None | 0 0
  1. --Game Link--
  2. --https://www.roblox.com/games/5693152742/Airplane-4--
  3. --Shorter version of this script--
  4. --loadstring(game:HttpGet("https://pastebin.com/qBC8GZVL", true))()--
  5.  
  6. -- Instances:
  7.  
  8. local ScreenGui = Instance.new("ScreenGui")
  9. local Gui = Instance.new("Frame")
  10. local Name = Instance.new("TextLabel")
  11. local Stuff = Instance.new("TextLabel")
  12. local FullHealth = Instance.new("TextButton")
  13. local Revive = Instance.new("TextButton")
  14. local Ticket = Instance.new("TextButton")
  15. local Bat = Instance.new("TextButton")
  16. local Monster = Instance.new("TextButton")
  17. local MazeEnd = Instance.new("TextButton")
  18. local Badge = Instance.new("TextButton")
  19. local Airplane = Instance.new("TextButton")
  20. local Sword = Instance.new("TextButton")
  21.  
  22. --Properties:
  23.  
  24. ScreenGui.Parent = game.CoreGui
  25.  
  26. Gui.Name = "Gui"
  27. Gui.Parent = ScreenGui
  28. Gui.BackgroundColor3 = Color3.fromRGB(53, 100, 255)
  29. Gui.Position = UDim2.new(0.772770762, 0, 0.0195694715, 0)
  30. Gui.Size = UDim2.new(0, 227, 0, 467)
  31. Gui.Active = true
  32. Gui.Draggable = true
  33.  
  34. Name.Name = "Name"
  35. Name.Parent = Gui
  36. Name.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  37. Name.Position = UDim2.new(0.198237881, 0, 0, 0)
  38. Name.Size = UDim2.new(0, 134, 0, 50)
  39. Name.Font = Enum.Font.TitilliumWeb
  40. Name.Text = "Airplane 4 [Story]"
  41. Name.TextColor3 = Color3.fromRGB(0, 0, 0)
  42. Name.TextSize = 20.000
  43.  
  44. Stuff.Name = "Stuff"
  45. Stuff.Parent = Gui
  46. Stuff.BackgroundColor3 = Color3.fromRGB(53, 100, 255)
  47. Stuff.Position = UDim2.new(0.311624676, 0, 0.123054981, 0)
  48. Stuff.Size = UDim2.new(0, 79, 0, 22)
  49. Stuff.Font = Enum.Font.SourceSans
  50. Stuff.Text = "Stuff"
  51. Stuff.TextColor3 = Color3.fromRGB(0, 0, 0)
  52. Stuff.TextSize = 14.000
  53.  
  54. FullHealth.Name = "Full Health"
  55. FullHealth.Parent = Gui
  56. FullHealth.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  57. FullHealth.Position = UDim2.new(0.25695312, 0, 0.198405191, 0)
  58. FullHealth.Size = UDim2.new(0, 109, 0, 30)
  59. FullHealth.Font = Enum.Font.SourceSans
  60. FullHealth.Text = "Full Health"
  61. FullHealth.TextColor3 = Color3.fromRGB(0, 0, 0)
  62. FullHealth.TextSize = 14.000
  63. FullHealth.MouseButton1Down:connect(function()
  64.     local args = {
  65.         [1] = 100
  66.     }
  67.  
  68.     game:GetService("ReplicatedStorage").Remotes.healPlayerEvent:FireServer(unpack(args))
  69. end)
  70.  
  71. Revive.Name = "Revive"
  72. Revive.Parent = Gui
  73. Revive.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  74. Revive.Position = UDim2.new(0.256953239, 0, 0.285311103, 0)
  75. Revive.Size = UDim2.new(0, 109, 0, 30)
  76. Revive.Font = Enum.Font.SourceSans
  77. Revive.Text = "Revive Self"
  78. Revive.TextColor3 = Color3.fromRGB(0, 0, 0)
  79. Revive.TextSize = 14.000
  80. Revive.MouseButton1Down:connect(function()
  81.     game:GetService("ReplicatedStorage").Remotes.ReviveEvent:FireServer()
  82. end)
  83.  
  84. Ticket.Name = "Ticket"
  85. Ticket.Parent = Gui
  86. Ticket.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  87. Ticket.Position = UDim2.new(0.25695312, 0, 0.371755809, 0)
  88. Ticket.Size = UDim2.new(0, 109, 0, 30)
  89. Ticket.Font = Enum.Font.SourceSans
  90. Ticket.Text = "Ticket"
  91. Ticket.TextColor3 = Color3.fromRGB(0, 0, 0)
  92. Ticket.TextSize = 14.000
  93. Ticket.MouseButton1Down:connect(function()
  94.     local args = {
  95.         [1] = "Ticket"
  96.     }
  97.  
  98.     game:GetService("ReplicatedStorage").Remotes.GrabItemEvent:FireServer(unpack(args))
  99. end)
  100.  
  101. Bat.Name = "Bat"
  102. Bat.Parent = Gui
  103. Bat.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  104. Bat.Position = UDim2.new(0.256953061, 0, 0.555555165, 0)
  105. Bat.Size = UDim2.new(0, 109, 0, 30)
  106. Bat.Font = Enum.Font.SourceSans
  107. Bat.Text = "Bat"
  108. Bat.TextColor3 = Color3.fromRGB(0, 0, 0)
  109. Bat.TextSize = 14.000
  110. Bat.MouseButton1Down:connect(function()
  111.     local args = {
  112.         [1] = "Bat"
  113.     }
  114.  
  115.     game:GetService("ReplicatedStorage").Remotes.GrabItemEvent:FireServer(unpack(args))
  116. end)
  117.  
  118.  
  119. Monster.Name = "Monster"
  120. Monster.Parent = Gui
  121. Monster.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  122. Monster.Position = UDim2.new(0.256953001, 0, 0.80698061, 0)
  123. Monster.Size = UDim2.new(0, 109, 0, 30)
  124. Monster.Font = Enum.Font.SourceSans
  125. Monster.Text = "Be the Monster"
  126. Monster.TextColor3 = Color3.fromRGB(0, 0, 0)
  127. Monster.TextSize = 14.000
  128. Monster.MouseButton1Down:connect(function()
  129.     game:GetService("ReplicatedStorage").Remotes.beTheMonsterEvent:FireServer()
  130. end)
  131.  
  132. MazeEnd.Name = "Maze End"
  133. MazeEnd.Parent = Gui
  134. MazeEnd.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  135. MazeEnd.Position = UDim2.new(0.256953001, 0, 0.891174078, 0)
  136. MazeEnd.Size = UDim2.new(0, 109, 0, 30)
  137. MazeEnd.Font = Enum.Font.SourceSans
  138. MazeEnd.Text = "Maze End Teleport"
  139. MazeEnd.TextColor3 = Color3.fromRGB(0, 0, 0)
  140. MazeEnd.TextSize = 14.000
  141. MazeEnd.MouseButton1Down:connect(function()
  142.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1856.38525, 34.2560043, 9.69802856, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  143. end)
  144.  
  145. Badge.Name = "Badge"
  146. Badge.Parent = Gui
  147. Badge.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  148. Badge.Position = UDim2.new(0.256953001, 0, 0.726787388, 0)
  149. Badge.Size = UDim2.new(0, 109, 0, 30)
  150. Badge.Font = Enum.Font.SourceSans
  151. Badge.Text = "Maze Badge"
  152. Badge.TextColor3 = Color3.fromRGB(0, 0, 0)
  153. Badge.TextSize = 14.000
  154. Badge.MouseButton1Down:connect(function()
  155.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1806.89233, 29.2869282, 97.567627, 0, 0, 1, 0, 1, -0, -1, 0,0)
  156. end)
  157.  
  158. Airplane.Name = "Airplane"
  159. Airplane.Parent = Gui
  160. Airplane.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  161. Airplane.Position = UDim2.new(0.256953001, 0, 0.639967799, 0)
  162. Airplane.Size = UDim2.new(0, 109, 0, 30)
  163. Airplane.Font = Enum.Font.SourceSans
  164. Airplane.Text = "House Teleport"
  165. Airplane.TextColor3 = Color3.fromRGB(0, 0, 0)
  166. Airplane.TextSize = 14.000
  167. Airplane.MouseButton1Down:connect(function()
  168.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(6.76712, 24.1541, -49.0354)
  169. end)
  170.  
  171. Sword.Name = "Sword"
  172. Sword.Parent = Gui
  173. Sword.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  174. Sword.Position = UDim2.new(0.256953061, 0, 0.467760801, 0)
  175. Sword.Size = UDim2.new(0, 109, 0, 30)
  176. Sword.Font = Enum.Font.SourceSans
  177. Sword.Text = "Sword"
  178. Sword.TextColor3 = Color3.fromRGB(0, 0, 0)
  179. Sword.TextSize = 14.000
  180. Sword.MouseButton1Down:connect(function()
  181.     local args = {
  182.         [1] = "Sword"
  183.     }
  184.  
  185.     game:GetService("ReplicatedStorage").Remotes.GrabItemEvent:FireServer(unpack(args))
  186. end)
  187.  
  188. -- Instances:
  189.  
  190. local ScreenGui = Instance.new("ScreenGui")
  191. local Gui = Instance.new("Frame")
  192. local Name = Instance.new("TextLabel")
  193. local Stuff = Instance.new("TextLabel")
  194. local _20 = Instance.new("TextButton")
  195. local _30 = Instance.new("TextButton")
  196. local _16 = Instance.new("TextButton")
  197. local Infinite = Instance.new("TextButton")
  198.  
  199. --Properties:
  200.  
  201. ScreenGui.Parent = game.CoreGui
  202.  
  203. Gui.Name = "Gui"
  204. Gui.Parent = ScreenGui
  205. Gui.BackgroundColor3 = Color3.fromRGB(53, 100, 255)
  206. Gui.Position = UDim2.new(0.53691262, 0, 0.0195694715, 0)
  207. Gui.Size = UDim2.new(0, 227, 0, 270)
  208. Gui.Active = true
  209. Gui.Draggable = true
  210.  
  211. Name.Name = "Name"
  212. Name.Parent = Gui
  213. Name.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  214. Name.Position = UDim2.new(0.198237881, 0, 0, 0)
  215. Name.Size = UDim2.new(0, 134, 0, 50)
  216. Name.Font = Enum.Font.TitilliumWeb
  217. Name.Text = "Airplane 4 [Story]"
  218. Name.TextColor3 = Color3.fromRGB(0, 0, 0)
  219. Name.TextSize = 20.000
  220.  
  221. Stuff.Name = "Stuff"
  222. Stuff.Parent = Gui
  223. Stuff.BackgroundColor3 = Color3.fromRGB(53, 100, 255)
  224. Stuff.Position = UDim2.new(0.316029966, 0, 0.216155469, 0)
  225. Stuff.Size = UDim2.new(0, 79, 0, 22)
  226. Stuff.Font = Enum.Font.SourceSans
  227. Stuff.Text = "Stuff  2"
  228. Stuff.TextColor3 = Color3.fromRGB(0, 0, 0)
  229. Stuff.TextSize = 14.000
  230.  
  231. _20.Name = "20"
  232. _20.Parent = Gui
  233. _20.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  234. _20.Position = UDim2.new(0.255868047, 0, 0.491381228, 0)
  235. _20.Size = UDim2.new(0, 109, 0, 30)
  236. _20.Font = Enum.Font.SourceSans
  237. _20.Text = "Speed (20)"
  238. _20.TextColor3 = Color3.fromRGB(0, 0, 0)
  239. _20.TextSize = 14.000
  240. _20.MouseButton1Down:connect(function()
  241.     local speed = "20"
  242.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
  243. end)
  244.  
  245.  
  246. _30.Name = "30"
  247. _30.Parent = Gui
  248. _30.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  249. _30.Position = UDim2.new(0.255703926, 0, 0.640393198, 0)
  250. _30.Size = UDim2.new(0, 109, 0, 30)
  251. _30.Font = Enum.Font.SourceSans
  252. _30.Text = "Speed (30)"
  253. _30.TextColor3 = Color3.fromRGB(0, 0, 0)
  254. _30.TextSize = 14.000
  255. _30.MouseButton1Down:connect(function()
  256.     local speed = "30"
  257.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
  258. end)
  259.  
  260. _16.Name = "16"
  261. _16.Parent = Gui
  262. _16.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  263. _16.Position = UDim2.new(0.249095857, 0, 0.784937501, 0)
  264. _16.Size = UDim2.new(0, 109, 0, 30)
  265. _16.Font = Enum.Font.SourceSans
  266. _16.Text = "Normal Speed"
  267. _16.TextColor3 = Color3.fromRGB(0, 0, 0)
  268. _16.TextSize = 14.000
  269. _16.MouseButton1Down:connect(function()
  270.     local speed = "16"
  271.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
  272. end)
  273.  
  274. Infinite.Name = "Infinite"
  275. Infinite.Parent = Gui
  276. Infinite.BackgroundColor3 = Color3.fromRGB(47, 89, 226)
  277. Infinite.Position = UDim2.new(0.257511854, 0, 0.339984, 0)
  278. Infinite.Size = UDim2.new(0, 109, 0, 30)
  279. Infinite.Font = Enum.Font.SourceSans
  280. Infinite.Text = "Infinite Jump"
  281. Infinite.TextColor3 = Color3.fromRGB(0, 0, 0)
  282. Infinite.TextSize = 14.000
  283. Infinite.MouseButton1Down:connect(function()
  284.     game:GetService("UserInputService").JumpRequest:connect(function()
  285.         game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")      
  286.     end)
  287. end)
Add Comment
Please, Sign In to add comment