The name says it all.
XD
If you could help that would be awesome!
The name says it all.
XD
If you could help that would be awesome!
Run a for loop.
local Players = game:GetService("Players")
for _, player in ipairs(Players:GetPlayers()) do
end
Then use this method: https://developer.roblox.com/en-us/api-reference/function/Humanoid/UnequipTools
for _, Player in ipairs(game.Players:GetPlayers()) do
if Player.Character then
Player.Character:WaitForChild"Humanoid":UnequipTools()
end
end
What would I put this in? And where? :3
You put it anywhere where a server script can run. Workspace, ServerScriptService, etc. But, the server script service is preferred.
You would be using a server script since obviously unequipping locally doesn’t works. In one of the places that server scripts always run in.
Got it, thank you! (30 characters)