Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Can someone help me about to fling others if i touch F ?

Asked by 3 years ago
Edited 3 years ago
local mouse = game.Players.LocalPlayer:GetMouse()
mouse.KeyDown:Connect(function(key)
    if key == "f" then
        anim:Play()
        wait(0.2)
        --and flings the players around me!
    end
end)
0
Try adding [Body Velocity](https://developer.roblox.com/en-us/api-reference/class/BodyVelocity) also use remote events https://developer.roblox.com/en-us/api-reference/class/RemoteEvent to fling them cause you can't fling them on a local script gamingwithjbthepro 76 — 3y

Answer this question