Advertisement
RyanDaCoder

Spawn box

Oct 7th, 2017
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. local box = Instance.new("Part")
  2. box.Anchored = false
  3. box.Name = "BoxScript"
  4. box.Size = Vector3.new(4, 3.6, 4)
  5. box.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Head.Position)
  6. box.BrickColor = BrickColor.new("Br. yellowish orange")
  7.  
  8. local decal = Instance.new("Decal")
  9. decal.Texture = "http://www.roblox.com/asset/?id=8384054"
  10. decal.Face = "Top"
  11. decal.Parent = box
  12.  
  13. local decal1 = Instance.new("Decal")
  14. decal1.Texture = "http://www.roblox.com/asset/?id=8384054"
  15. decal1.Face = "Bottom"
  16. decal1.Parent = box
  17.  
  18. local decal2 = Instance.new("Decal")
  19. decal2.Texture = "http://www.roblox.com/asset/?id=8384054"
  20. decal2.Face = "Left"
  21. decal2.Parent = box
  22.  
  23. local decal3 = Instance.new("Decal")
  24. decal3.Texture = "http://www.roblox.com/asset/?id=8384054"
  25. decal3.Face = "Right"
  26. decal3.Parent = box
  27.  
  28. local decal4 = Instance.new("Decal")
  29. decal4.Texture = "http://www.roblox.com/asset/?id=8384054"
  30. decal4.Face = "Front"
  31. decal4.Parent = box
  32.  
  33. local decal5 = Instance.new("Decal")
  34. decal5.Texture = "http://www.roblox.com/asset/?id=8384054"
  35. decal5.Face = "Back"
  36. decal5.Parent = box
  37.  
  38. -- spawn a box
  39. -- lol
  40. -- Made By Me
  41. -- I Was The Guest To XD
  42.  
  43. box.Parent = game.Workspace
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement