TheUnknownDiscord

the skeleton

Feb 4th, 2022 (edited)
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. tool = Instance.new("Tool",owner.Backpack)
  2. part = Instance.new("Part",tool)
  3. part.Name = "Handle"
  4. part.Transparency = 1
  5. tool.Name = "the skeleton"
  6. part.Size = Vector3.new(1.5,1.5,1.5)
  7. tool.Grip = CFrame.new(0,0,0.75)
  8. a = Instance.new("Sound",part)
  9. a.SoundId = "http://www.roblox.com/asset/?id=8731780069"
  10. a.Looped = true
  11. a.Volume = 2
  12. local billboard = Instance.new("BillboardGui", part)
  13. billboard.Size = UDim2.new(1.5,0,1.5,0)
  14. local frame = Instance.new("ImageLabel", billboard)
  15. frame.BackgroundTransparency = 1
  16. frame.Image = "http://www.roblox.com/asset/?id=8704334145"
  17. frame.Size = UDim2.new(1,0,1,0)
  18. frame.ResampleMode = Enum.ResamplerMode.Pixelated
  19. tool.Equipped:Connect(function()
  20. a:Resume()
  21. end)
  22. tool.Unequipped:Connect(function()
  23. a:Pause()
  24. end)
Add Comment
Please, Sign In to add comment