RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that makes my character fling anyone i touch"
-- local script local character = game.Players.LocalPlayer.Character local humanoid = character:FindFirstChild("Humanoid") local function onTouched(part) local otherCharacter = part.Parent local otherHumanoid = otherCharacter:FindFirstChild("Humanoid") if otherHumanoid then otherHumanoid.PlatformStand = true local bodyVelocity = Instance.new("BodyVelocity") bodyVelocity.Velocity = Vector3.new(0, 50, 0) bodyVelocity.MaxForce = Vector3.new(0, math.huge, 0) bodyVelocity.Parent = otherHumanoid.RootPart wait(1) bodyVelocity:Destroy() otherHumanoid.PlatformStand = false end end humanoid.Touched:Connect(onTouched)