Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- lp = game.Players.LocalPlayer
- char = lp.Character
- tool = Instance.new("Tool",lp.Backpack)
- tool.Name = "Door Lock"
- tool.ToolTip = "retrojooooono"
- tool.CanBeDropped = false
- handle = Instance.new("Part",tool)
- handle.Name = "Handle"
- handle.Size = Vector3.new(2,2,0.1)
- handle.Transparency = 1
- decal = Instance.new("Decal",handle)
- decal.Face = Enum.NormalId.Front
- decal.Texture = "http://www.roblox.com/asset/?id=2157778553"
- decal2 = Instance.new("Decal",handle)
- decal2.Face = Enum.NormalId.Back
- decal2.Texture = "http://www.roblox.com/asset/?id=2157778553"
- tool.Activated:connect(function()
- target = lp:GetMouse().Target
- if target.CanCollide == false then
- target.CanCollide = true
- decal = Instance.new("Decal",target)
- decal.Face = Enum.NormalId.Front
- decal.Texture = "http://www.roblox.com/asset/?id=2157778553"
- decal2 = Instance.new("Decal",target)
- decal2.Face = Enum.NormalId.Back
- decal2.Texture = "http://www.roblox.com/asset/?id=2157778553"
- decal3 = Instance.new("Decal",target)
- decal3.Face = Enum.NormalId.Left
- decal3.Texture = "http://www.roblox.com/asset/?id=2157778553"
- decal4 = Instance.new("Decal",target)
- decal4.Face = Enum.NormalId.Right
- decal4.Texture = "http://www.roblox.com/asset/?id=2157778553"
- decal5 = Instance.new("Decal",target)
- decal5.Face = Enum.NormalId.Top
- decal5.Texture = "http://www.roblox.com/asset/?id=2157778553"
- decal6 = Instance.new("Decal",target)
- decal6.Face = Enum.NormalId.Bottom
- decal6.Texture = "http://www.roblox.com/asset/?id=2157778553"
- tool:Destroy()
- wait(60)
- decal:Destroy()
- decal2:Destroy()
- decal3:Destroy()
- decal4:Destroy()
- decal5:Destroy()
- decal6:Destroy()
- target.CanCollide = false
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement