0_Abysal

Untitled

Jul 28th, 2018
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. me = game.Players.LocalPlayer.Character
  2. me.Humanoid.WalkSpeed = "100"
  3. color = "255"
  4. material = "Neon"
  5. while true do wait()
  6. b=Instance.new("Part",workspace)
  7. b.Anchored = true
  8. b.FormFactor = "Custom"
  9. b.Size = Vector3.new(30,0,20)
  10. b.CFrame = me.Torso.CFrame * CFrame.new(0,-3,0)
  11. b.Color = Color3.new(color,color,color)
  12. b.Material = material
  13.  
  14. y=Instance.new("Part",workspace)
  15. y.Anchored = true
  16. y.FormFactor = "Custom"
  17. y.Size = Vector3.new(30,0,20)
  18. y.CFrame = me.Torso.CFrame * CFrame.new(0,23,0)
  19. y.Color = Color3.new(color)
  20. y.Material = material
  21.  
  22. x=Instance.new("Part",b)
  23. x.Size = Vector3.new(0,25,20)
  24. x.CFrame = me.Torso.CFrame * CFrame.new(15,10,0)
  25. x.Anchored = true
  26. x.Transparency="0.9"
  27. x.Color = Color3.new(0,0,0)
  28.  
  29. c=Instance.new("Part",b)
  30. c.Size = Vector3.new(0,25,20)
  31. c.CFrame = me.Torso.CFrame * CFrame.new(-15,10,0)
  32. c.Anchored = true
  33. c.Transparency="0.9"
  34. c.Color = Color3.new(0,0,0)
  35.  
  36. end
Add Comment
Please, Sign In to add comment