Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. script.Parent.Touched:connect(function(p)
  2. if p.Parent.Name == "Key1" then -- Nombre Del tool [Remplazar]
  3. script.Parent.Transparency = 0.5
  4. script.Parent.CanCollide = false
  5. wait(1)
  6. script.Parent.Transparency = 0
  7. script.Parent.CanCollide = true
  8. end
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement