--Made by vSam#3678 --Jump and press R mid air to freeze mid air and click E to unfreeze mid air. local UIS = game:GetService('UserInputService') local plr = game.Players.LocalPlayer local Char = plr.Character or plr.CharacterAdded:Wait() local Key = 'E' UIS.InputBegan:Connect(function(Input, IsTyping) if IsTyping then return end local KeyPressed = Input.KeyCode if KeyPressed == Enum.KeyCode[Key] then game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false end end) local AnotherKey = 'R' UIS.InputBegan:Connect(function(Input, IsTyping) if IsTyping then return end local KeyPressed = Input.KeyCode if KeyPressed == Enum.KeyCode[AnotherKey] then game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true end end)