RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Kavo fly toggle script"
local part = script.Parent local canFly = true local function fly(otherPart) local partParent = otherPart.Parent local humanoid = partParent:FindFirstChildWhichIsA('Humanoid') if humanoid and canFly then canFly = false humanoid:ChangeState("Flying") wait(3) humanoid:ChangeState("Jumping") canFly = true end end part.Touched:Connect(fly)