RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"kill player holding tool mixtape when remote event PlayingJazz is activated"
-- server script local remoteEvent = game.ReplicatedStorage.PlayingJazz remoteEvent.OnServerEvent:Connect(function(player) local tool = player.Backpack:FindFirstChild("Tool Mixtape") if tool then player.Character:BreakJoints() end end)