Advertisement
sbScripts

killerfish script slap battles

Sep 11th, 2023 (edited)
5,492
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 1 0
  1. local player = game.Players.LocalPlayer
  2. local character = player.Character or player.CharacterAdded:Wait()
  3. local tool = character:FindFirstChild("fish") or player.Backpack:FindFirstChild("fish")
  4.  
  5. local fish = game.Workspace.Lobby.fish
  6. local fishStand = game.Workspace.Lobby.GloveStands.fish
  7. local leaderstats = player:FindFirstChild("leaderstats")
  8. local gloveStat = leaderstats:FindFirstChild("Glove")
  9.  
  10. local userInputService = game:GetService("UserInputService")
  11. local canUseAbility = true
  12. userInputService.InputBegan:Connect(function(input, gameProcessedEvent)
  13. if character.isInArena.Value == true then
  14. if gloveStat.Value == "fish" or gloveStat.Value == "Killerfish" then
  15. if input.KeyCode == Enum.KeyCode.R and canUseAbility then
  16. canUseAbility = false
  17. game:GetService("ReplicatedStorage").GeneralAbility:FireServer()
  18. wait(3.05)
  19. canUseAbility = true
  20. end
  21. end
  22. end
  23. end)
  24.  
  25. while fish:FindFirstChild("Texture") do
  26. fish.Texture:Destroy()
  27. fish.Color = Color3.new(124, 124, 124)
  28. fish.Material = "DiamondPlate"
  29. fishStand.GloveDesc.DescOutline.DescFrame:FindFirstChild("Name").Text = "Killerfish"
  30. wait(0.05)
  31. end
  32.  
  33. while true do
  34. if gloveStat.Value == "fish" or gloveStat.Value == "Killerfish" then
  35. gloveStat.Value = "Killerfish"
  36. end
  37. wait(0.05)
  38. end
  39.  
  40. while tool.Glove:FindFirstChild("Texture") do
  41. tool.Glove.Texture:Destroy()
  42. wait(0.05)
  43. end
  44.  
  45. tool.Glove.Color = Color3.new(124, 124, 124)
  46. tool.Glove.Material = "DiamondPlate"
  47. tool.Name = "Killerfish"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement