Advertisement
Den4ikSeekers

[ROBLOX] Raining heads

Jun 7th, 2017
1,181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.63 KB | None | 0 0
  1. --Raining heads script used by 1x1x1x1 on Crossroads. Made by Den4ikSeekers.
  2.  
  3. while true do
  4. wait(0.0001)
  5. local p = Instance.new('Part')
  6.  p.Parent = game.Workspace
  7.  p.Position = Vector3.new ((math.random(-300, 300)),300,(math.random(-300, 300)))
  8.  p.Size = Vector3.new( 5, 5, 5)
  9.  p.BrickColor = BrickColor.new('Bright yellow')
  10.  p.Locked = true
  11.  p.Anchored = false
  12.  p.CanCollide = false
  13.  p.Name = 'Infected'
  14.  
  15.  m = Instance.new('SpecialMesh')
  16.  m.Parent = p
  17.  m.MeshType = 'Head'
  18.  m.Scale = Vector3.new(5,5,5)
  19.  
  20.  f = Instance.new('Decal')
  21.  f.Parent = p
  22.  f.Texture = ('rbxasset://textures/face.png')
  23.  f.Face = ('Front')
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement