So I am trying to make it when you touch a certain part, it triggers and goes into the workspace, it opens a model and it goes to a decal and changes the transparency when it is touched by the players Humanoid.
When I go to touch the part that activates the outcome, nothing happens.
Here is the script:
script.Parent.Touched:Connect(function(hit) local h = hit.Parent:FindFirstChild('Humanoid') if h then game.Workspace.Bob.Head.Decal.Transparency = 0 end end)