Advertisement
Guest User

beedoo script 2

a guest
Jan 27th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local Mouse = player:GetMouse()
  3. debounce = false
  4. Mouse.KeyDown:connect(function(key)
  5. local canDamage = true
  6. local debounce = false
  7. local cool = 2
  8. local enabled = false
  9. Mouse.KeyDown:connect(function(key)
  10. local canDamage = true
  11. local debounce = false
  12. local cool = 2
  13. local key = key:lower()
  14. if key == "g" and enabled == false then
  15. game.ReplicatedStorage:WaitForChild("CloneBricks"):FireServer(player)
  16. enabled = true
  17. elseif key == "g" and enabled == true then
  18. game.ReplicatedStorage:WaitForChild("StopBrickCloning"):FireServer()
  19. enabled = false
  20. end
  21. end)
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement