Advertisement
Guest User

Big dirt ball

a guest
Apr 6th, 2020
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. function dirtBall()
  2.    local ball = Instance.new("Part")
  3.    ball.Name = ("DirtBall")
  4.    ball.Parent = game.Workspace
  5.    ball.Material = ("Grass")
  6.    ball.BrickColor = BrickColor.new("Brown")
  7.    ball.Shape = ("Ball")
  8.    ball.Size = Vector3.new(1000,1000,1000)
  9.    ball.Anchored = false
  10. end
  11. dirtBall()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement