--BROUGHT TO YOU BY RobloxScripter.com!--
repeat wait() until game:IsLoaded()
local shipName = "Stratos" --whatever ship you are using. capitalize first letter.
local shipspath = game:GetService("ReplicatedStorage").Stats.Ships
for i,v in next, shipspath:GetChildren() do
for i,v in next, v:GetChildren() do
if v.Name == shipName then
while true do
v.Speed.Charge.Value = .1
v.Speed.Warp.Value = 5000
v.Speed.Accel.Value = 5000
v.Speed.Agility.Value = 5000
wait()
end
end
end
end