Advertisement
UhhLegoboy

Hot Racoons

Feb 15th, 2017
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.20 KB | None | 0 0
  1. wait(0)
  2. char = game.Players.LocalPlayer.Character
  3. for _, child in pairs(char:GetChildren()) do
  4.     if child.ClassName == 'Accessory' then
  5.         child:Destroy()
  6.     end
  7. end
  8.  
  9. --"Ridiculous"
  10. debounce = false
  11.         h = Instance.new("Accessory")
  12.         p = Instance.new("Part")
  13.         h.Name = "Friendly"
  14.         p.Parent = h
  15.         p.Position = char:findFirstChild("Head").Position
  16.         p.Name = "Handle"
  17.         p.formFactor = 0
  18.         p.BottomSurface = 0
  19.         p.TopSurface = 0
  20.         p.Locked = true
  21.         Hat = Instance.new("SpecialMesh", p)
  22.         Hat.MeshId = "http://www.roblox.com/asset/?id=185811808"
  23.         Hat.TextureId = "http://www.roblox.com/asset/?id=185811850"
  24.         Hat.Scale = Vector3.new(1.2, 1.2, 1.2)
  25.         h.Parent = char
  26.         h.AttachmentForward = Vector3.new (0, 0, -1)
  27.         h.AttachmentPos = Vector3.new(0, -0.08, -0.1)
  28.         h.AttachmentRight = Vector3.new (1, 0, 0)
  29.         h.AttachmentUp = Vector3.new (0, 1, 0)
  30.         wait(0.01)
  31.         debounce = true
  32.  
  33.  
  34. --"Friendly"
  35. debounce = false
  36.         h = Instance.new("Accessory")
  37.         p = Instance.new("Part")
  38.         h.Name = "Friendly"
  39.         p.Parent = h
  40.         p.Position = char:findFirstChild("Head").Position
  41.         p.Name = "Handle"
  42.         p.formFactor = 0
  43.         p.BottomSurface = 0
  44.         p.TopSurface = 0
  45.         p.Locked = true
  46.         Hat = Instance.new("SpecialMesh", p)
  47.         Hat.MeshId = "http://www.roblox.com/asset/?id=450508134"
  48.         Hat.TextureId = "http://www.roblox.com/asset/?id=450507988"
  49.         Hat.Scale = Vector3.new(0.5, 0.5, 0.5)
  50.         h.Parent = char
  51.         h.AttachmentForward = Vector3.new (0, 0, -1)
  52.         h.AttachmentPos = Vector3.new(0, -0.48, -0.5)
  53.         h.AttachmentRight = Vector3.new (1, 0, 0)
  54.         h.AttachmentUp = Vector3.new (0, 1, 0)
  55.         wait(0.01)
  56.         debounce = true
  57. --Sound
  58. IDs = {569035295,304511128,190316871,612888361,323874540,571839980, 299062008}
  59. Sound = Instance.new("Sound", char.Head)
  60. Sound.SoundId = "rbxassetid://" .. IDs[math.random(1,7)]
  61. Sound.Looped = true
  62. Sound :play()
  63.  
  64. while true do
  65.     h.AttachmentPos = Vector3.new(0, -0.48, -0.5)
  66.     wait(0.05)
  67.     h.AttachmentPos = Vector3.new(0, -0.55, -0.5)
  68.     wait(0.05)
  69. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement