lotushomerun

brick with decal script(Roblox)

May 7th, 2017
794
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. base = "http://www.roblox.com/asset/?id="
  2. id1 = 453832749
  3. id2 = 453832749
  4. local brick = Instance.new("Part", workspace)
  5. brick.BrickColor = BrickColor.Black()
  6. brick.Size = Vector3.new(2, 30, 50)
  7. --brick.Position = Vector3.new()
  8. brick.Anchored = true
  9. local decal1 = Instance.new("Decal", brick)
  10. decal1.Face = "Right"
  11. decal1.Texture = base..id1
  12. local decal2 = Instance.new("Decal", brick)
  13. decal2.Face = "Left"
  14. decal2.Texture = base..id2
Add Comment
Please, Sign In to add comment