#Should i try to make a tool that protects the player from harm
10 messages · Page 1 of 1 (latest)
Do whatever you feel.
ok
There are alot of things you can do with tools.
local Tool = Instance.new("Tool")
Tool.Equipped
Tool.UnEquipped
Tool.Activated
Tool.Deactivated
all of these are functions btw
Tool.Equipped:Connect(function()
//logic in here
end)
Activated means when a player clicks while the mouse while the tool is equipped. Tool.Deactivated is when that input is finished: when the player lets go of their mouse
Use this documentation to help you:
https://create.roblox.com/docs/reference/engine/classes/Tool
good luck 