So I put this event together, and I think I’m missing something really simple to make it work. This script would be in the “Part” in Workspace.
local function Run()
if
game.Workspace.Part.Transparency == 0 then
game.Workspace.Part.Transparency = .1
end
end
game.Workspace.Part.Touched:Connect(Run)
local function Running()
game.Workspace.Part.Anchored = false
end
game.Workspace.Part.Touched:Connect(Running)
print("Working?")
local function Run()
if game.Workspace.Part.Transparency == 0 then
game.Workspace.Part.Transparency = .1
end
game.Workspace.Part.Anchored = false
end
game.Workspace.Part.Touched:Connect(Run)
print("Working?")``
Try this