Advertisement
aceemumerson
Mar 31st, 2023
33
0
Never
This is comment for paste Da Hood Autofarm GUI
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local function Tween(speed,part,color)
  2. tweenService, tweenInfo = game:GetService("TweenService"), TweenInfo.new(speed, Enum.EasingStyle.Linear)
  3. tweenService:Create(part,tweenInfo,{ Color = color }):Play()
  4. end
  5. while task.wait(0.2) do
  6. if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  7. for _,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  8. if v:IsA("Tool") then
  9. if v:FindFirstChild("Default") then
  10. v:FindFirstChild("Default").Material = "ForceField"
  11. Tween(0.2,v:FindFirstChild("Default"),Color3.fromRGB(math.random(255),math.random(255),math.random(255)))
  12. end
  13. end
  14. end
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement