-- Services local userInputService = game:GetService("UserInputService") local runService = game:GetService("RunService")
runService.RenderStepped:Connect(function() if antiAFKEnabled and (tick() - lastMove > 60) then -- Simulate a small movement to prevent AFK kick local mouse = player:GetMouse() if mouse then -- Very subtle move (won't affect gameplay) local currentPos = humanoid.RootPart and humanoid.RootPart.Position if currentPos then humanoid:MoveTo(currentPos + Vector3.new(0.01, 0, 0.01)) end end lastMove = tick() end end) -NOVO- ERLC Script
userInputService.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.Keyboard or input.UserInputType == Enum.UserInputType.MouseMovement then lastMove = tick() end end) -NOVO- ERLC Script
local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") -NOVO- ERLC Script
-- Anti-AFK (optional - toggle with 'N' key) local antiAFKEnabled = false local lastMove = tick()
-- Simple speed boost (toggle with 'B' key) local speedBoostEnabled = false local normalWalkSpeed = 16 local boostedWalkSpeed = 50