Advertisement
Guest User

Booga Booga heal script

a guest
Jul 12th, 2019
4,210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. ----This script is use for PvP press e to eat bloodfruit
  2. ----you need to have bloodfruit in your inventory.
  3. ----:)
  4.  
  5.  
  6.  
  7. local player = game.Players.LocalPlayer
  8. local mouse = player:GetMouse()
  9.  
  10. mouse.keyDown:connect(function(key)
  11. if key =="e" then
  12. local A_1 = "Bloodfruit"
  13. local Event = game:GetService("ReplicatedStorage").Events.UseBagItem
  14. Event:FireServer(A_1)
  15. end
  16. game.ReplicatedStorage.UseBagItem:FireServer("Bloodfruit")
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement