Advertisement
UhhLegoboy

RICE FIELDS

Jan 28th, 2017
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.36 KB | None | 0 0
  1. wait(0)
  2. player = game.Players.LocalPlayer
  3. char = player.Character
  4. extension = "rbxassetid://"
  5.  
  6. Pants = char.Pants
  7. char.Shirt : Destroy()
  8. Pants.PantsTemplate = extension .. "1812625"
  9.  
  10. debounce = false
  11.         h = Instance.new("Hat")
  12.         p = Instance.new("Part")
  13.         h.Name = "LOL"
  14.         p.Parent = h
  15.         p.Position = char:findFirstChild("Head").Position
  16.         p.Name = "Handle"
  17.         p.formFactor = 0
  18.         p.Size = Vector3.new(1.6, 1.3, 1.6)
  19.         p.BottomSurface = 0
  20.         p.TopSurface = 0
  21.         p.Locked = true
  22.         Hat = Instance.new("SpecialMesh", p)
  23.         Hat.MeshId = "http://www.roblox.com/asset/?id=1033714"
  24.         Hat.TextureId = "http://www.roblox.com/asset/?id=1033717"
  25.         h.Parent = char
  26.         h.AttachmentForward = Vector3.new (0, -0.197, -0.98)
  27.         h.AttachmentPos = Vector3.new(0, -0.35, 0)
  28.         h.AttachmentRight = Vector3.new (1, 0, 0)
  29.         h.AttachmentUp = Vector3.new (0, 0.98, -0.197)
  30.         wait(0.01)
  31.         debounce = true
  32.  
  33. --remove
  34. for _, child in pairs(char:GetChildren()) do
  35.     if child.ClassName == 'Accessory' then
  36.         child:Destroy()
  37.     end
  38. end
  39.  
  40. Sound = Instance.new("Sound", char.Torso)
  41. Sound.SoundId = extension .. "529120413"
  42. Sound.Looped = true
  43. Sound : play()
  44.  
  45. char.Head.face.Texture = extension .. "246990285"
  46. char ["Shirt Graphic"].Graphic = "rbxassetid://0"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement