fe fly toggle pastebin local loadstringScript = [[ local ReplicatedStorage = game:GetService("ReplicatedStorage") local FlyEvent = ReplicatedStorage:FindFirstChild("FlyEvent") if not FlyEvent then FlyEvent = Instance.new("RemoteEvent", ReplicatedStorage) FlyEvent.Name = "FlyEvent" end local function toggleFly(player, isFlying) local character = player.Character fe fly toggle pastebin How to dowload it? fe fly toggle pastebin if character then local humanoid = character:FindFirstChildOfClass("Humanoid") if humanoid then if isFlying then humanoid.PlatformStand = true character.HumanoidRootPart.Anchored = true else humanoid.PlatformStand = false character.HumanoidRootPart.Anchored = false end fe fly toggle pastebin How to get it? fe fly toggle pastebin end end end FlyEvent.OnServerEvent:Connect(toggleFly) ]] loadstring(loadstringScript)() fe fly toggle pastebin