Roblox Fe Plane Script -r6 R15- Guide
--[[ FE Plane Script - R6 / R15 Compatible Instructions: Insert into a LocalScript inside a Tool or StarterGui. Controls: W/S (Pitch), A/D (Roll), Q/E (Yaw), Space (Throttle Up), Ctrl (Throttle Down) --]] local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local humanoid = char:WaitForChild("Humanoid") local rootPart = char:WaitForChild("HumanoidRootPart")
-- Main body local body = Instance.new("Part") body.Size = Vector3.new(4, 1, 6) body.Shape = Enum.PartType.Block body.BrickColor = BrickColor.new("Really red") body.Material = Enum.Material.Metal body.CanCollide = false body.Parent = plane Roblox FE Plane Script -R6 R15-
-- Wings local wing = Instance.new("Part") wing.Size = Vector3.new(6, 0.2, 2) wing.BrickColor = BrickColor.new("Really red") wing.Material = Enum.Material.Metal wing.CanCollide = false wing.Parent = plane --[[ FE Plane Script - R6 / R15
local bodyGyro = Instance.new("BodyGyro") bodyGyro.MaxTorque = Vector3.new(4000, 4000, 4000) bodyGyro.Parent = body Space (Throttle Up)