Advertisement
c57ksecond

Ice

Aug 26th, 2021
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification",{
  2. Title = "Notification",
  3. Text = "Gun Color Has Been Changed, If not, Stop Holding Guns. Then Execute again",
  4. Duration = 15,
  5. })
  6. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  7. if v:IsA'Tool' and v:FindFirstChild'Ammo' or v:FindFirstChild'MaxAmmo' then
  8. for _,Part in pairs(v:GetDescendants()) do
  9. if Part:IsA'UnionOperation' or Part:IsA'Part' or Part:IsA'MeshPart' then
  10. if Part:IsA'UnionOperation' then
  11. Part.UsePartColor = true
  12. end
  13. Part.Material = "Ice"
  14. end
  15. end
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement