Categories > Exploiting > Scripts >
FE speed script r15 and r6
Posted
most exploits have their built in speed scripts. Some dont work, so heres a script that will work on almost all games.
local Players = game:service('Players')
local Player = Players.LocalPlayer
local userInput = game:service('UserInputService')
local runService = game:service('RunService')
repeat wait() until Player.Character
local Character = Player.Character
local pHum = Character:WaitForChild('Humanoid')
local humRoot = Character:WaitForChild('HumanoidRootPart')
local Multiplier = 1.4
userInput.InputBegan:connect(function(Key)
if Key.KeyCode == Enum.KeyCode.LeftBracket then
Multiplier = Multiplier + 0.1
print(Multiplier)
wait(0.2)
while userInput:IsKeyDown(Enum.KeyCode.LeftBracket) do
wait()
Multiplier = Multiplier + 0.1
print(Multiplier)
end
end
if Key.KeyCode == Enum.KeyCode.RightBracket then
Multiplier = Multiplier - 0.1
print(Multiplier)
wait(0.2)
while userInput:IsKeyDown(Enum.KeyCode.RightBracket) do
wait()
Multiplier = Multiplier - 0.1
print(Multiplier)
end
end
end)
runService.Stepped:connect(function()
if userInput:IsKeyDown(Enum.KeyCode.LeftShift) then
humRoot.CFrame = humRoot.CFrame + pHum.MoveDirection * Multiplier
end
end)
press SHIFT
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post