Advertisement
Roblox_Xploits

Blood Block

Mar 12th, 2017
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. Player = game.Players.LocalPlayer
  2. Mouse = Player:GetMouse()
  3.  
  4. Mouse.KeyDown:connect(function(key)
  5. if key == "e" then
  6. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  7. script.Disabled = true
  8. print("Opening Light Block")
  9. game:GetService("Chat"):Chat(Player.Character.Head, "BLOOD BLOCK", "Blue")
  10. local x = Instance.new("Part", game.Workspace)
  11. x.Anchored = true
  12. x.CanCollide = true
  13. x.FormFactor = "Custom"
  14. x.TopSurface = 0
  15. x.BottomSurface = 0
  16. x.BrickColor = BrickColor.new("Crimson")
  17. x.Size = Vector3.new(50,50,50)
  18. x.CFrame = Player.Character.Torso.CFrame*CFrame.new(0,0,-2)
  19. x.Transparency = 0.4
  20. game.Debris:AddItem(x, 4)
  21. wait(3)
  22. script.Disabled = false
  23. end
  24. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement