This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local RunService = game:GetService("RunService") | |
local Players = game:GetService("Players") | |
local Workspace = game:GetService("Workspace") | |
local ReplicatedStorage = game:GetService("ReplicatedStorage") | |
local TweenService = game:GetService("TweenService") | |
local isServer = game:GetService("RunService"):IsServer() | |
local player = isServer and nil or Players.LocalPlayer | |
local playerAircraft = isServer and nil or Workspace:FindFirstChild(player.Name .. " Aircraft") |