-- CHARACTER SPAZ OUT (VERY FAST) -- LocalScript | StarterPlayerScripts local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local player = Players.LocalPlayer local active = true ------------------------------------------------ -- WAIT FOR CHARACTER ------------------------------------------------ local function getChar() return player.Character or player.CharacterAdded:Wait() end local function getRoot() local char = getChar() return char:WaitForChild("HumanoidRootPart") end ------------------------------------------------ -- SPAZ LOOP ------------------------------------------------ local connection local function startSpaz() if connection then return end connection = RunService.RenderStepped:Connect(function() local root = getRoot() -- SUPER FAST ROTATION root.CFrame = root.CFrame * CFrame.Angles( math.rad(math.random(-180,180)), math.rad(math.random(-180,180)), math.rad(math.random(-180,180)) ) -- RANDOM VELOCITY (FLINGY) root.AssemblyLinearVelocity = Vector3.new( math.random(-200,200), math.random(-200,200), math.random(-200,200) ) -- MICRO TELEPORT JITTER root.CFrame = root.CFrame + Vector3.new( math.random(-2,2), math.random(-2,2), math.random(-2,2) ) end) end ------------------------------------------------ -- STOP SPAZ ------------------------------------------------ local function stopSpaz() if connection then connection:Disconnect() connection = nil end local root = getRoot() root.AssemblyLinearVelocity = Vector3.zero end ------------------------------------------------ -- TOGGLE ------------------------------------------------ -- PC: Press L -- Mobile: Triple Tap local tapCount = 0 local lastTap = 0 UserInputService.InputBegan:Connect(function(input, gpe) if gpe then return end -- PC toggle if input.KeyCode == Enum.KeyCode.L then active = not active if active then startSpaz() else stopSpaz() end end -- Mobile toggle (triple tap) if input.UserInputType == Enum.UserInputType.Touch then local t = tick() if t - lastTap < 0.4 then tapCount += 1 else tapCount = 1 end lastTap = t if tapCount >= 3 then active = not active if active then startSpaz() else stopSpaz() end tapCount = 0 end end end) ------------------------------------------------ -- AUTO START ------------------------------------------------ startSpaz()