Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
1,369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.96 KB | None | 0 0
  1. local StrengthValue = 3 -- Type your StrengthValue here! You can check the strenght of your weapon in the shop!
  2.  
  3. _G.BlobAutoFarm = true
  4. while(_G.BlobAutoFarm==true) do
  5.     wait()
  6.     for i,v in pairs(game.Workspace.Slimes:GetDescendants()) do
  7.         if v.Name == "strength" and v:IsA("NumberValue") then
  8.             if v.Value == StrengthValue then
  9.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Parent.Parent:WaitForChild("RootPart").CFrame - v.Parent.Parent:WaitForChild("RootPart").CFrame.lookVector * 5
  10.                 wait()
  11.                 game.ReplicatedStorage.RPC.Gun_Activated:FireServer()
  12.                 wait()
  13.                 game.ReplicatedStorage.RPC.Gun_Activated:FireServer()
  14.                 wait()
  15.                 game.ReplicatedStorage.RPC.Gun_Activated:FireServer()
  16.                 wait(0.7)
  17.                 game.ReplicatedStorage.RPC.Farm_Action:FireServer("Deposit")
  18.             end
  19.         end
  20.     end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement