Description
The MM2 Auto Fling Script is a simple Murder Mystery 2 script designed to automatically fling players using knockback physics. It is useful for players looking for a basic fling feature without a key system.
Features
- Simple and Lightweight
- Auto Fling Players
- Automatic Knockback
Features
Compatible Executors
Script
-- Example: Server script applying knockback on hit
local function applyKnockback(targetCharacter, direction, force)
local rootPart = targetCharacter:FindFirstChild("HumanoidRootPart")
if rootPart then
-- Apply linear velocity/impulse safely on the server
rootPart:ApplyImpulse(direction * force)
end
end
No comments yet. Be the first!