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

How to fix my script that makes tool CanCollide false when picked up but true when dropped?

Asked by
TechModel 118
2 years ago

I added a script a normal one in a tool that makes it CanCollide false which I want the tool to go through the wall, but if I drop it, then it goes back to CanCollide to true. I tried to make a script and I know I did a terrible job but how can I fix this?

local tool = script.Parent.Model

if tool.Dropped then
    tool.CanCollide = true
elseif tool.PickedUp then
    tool.CanCollide = false
end

1 answer

Log in to vote
1
Answered by
7z99 203 Moderation Voter
2 years ago
Edited 2 years ago

You should listen for the .AncestryChanged event of the tool. tool.Dropped and tool.PickedUp aren't properties or events of a tool. Also, tools aren't models and models don't have a CanCollide property.

local players = game:GetService('Players')
local tool = script.Parent
local handle = tool.Handle

tool.AncestryChanged:Connect(function()
    if players:GetPlayerFromCharacter(tool:FindFirstAncestorOfClass(model)) then -- it's a descendant of a player's character
        handle.CanCollide = false
    else
        tool.CanCollide = true
    end
end)
0
In the 6th line, the part (model)) is underlined red, could that be an error? Also should I use local script or a script TechModel 118 — 2y
Ad

Answer this question