SoccerBall = game.Workspace.Part8 Workspace.Part6.CanCollide = false function Touched(SoccerBall) Workspace.Part6.Decal1.Transparency = 0 wait(3) Workspace.Part6.Decal1.Transparency = 1 SoccerBall.Archivable = false SoccerBall.Position = Vector3.new(-198.29, 2.28, -111.29) wait(1) SoccerBall.Archivable = true end script.Parent.Touched:connect(Touched)
For example, I want SoccerBall to be the only one that activates the script. What do I need to add to the script? Thanks!
All you need to do is put the script inside the SoccerBall. Only have 1 script, and make SoccerBall it's parent.