--[[ I NOT AUTHOR THIS IS SCRIPT AUTHOR THIS IS SCRIPT: Zyrkon_Vaalix (https://scriptblox.com/u/Zyrkon_Vaalix) ]] local players = game:GetService("Players") local userService = game:GetService("UserService") local localPlayer = players.LocalPlayer local userInfo = userService:GetUserInfosByUserIdsAsync({localPlayer.UserId}) local displayName = userInfo[1].DisplayName local WindUI = loadstring(game:HttpGet("https://github.com/Footagesus/WindUI/releases/latest/download/main.lua"))() local tycoons = workspace.Tycoons local localTycoon = nil for _, i in pairs(tycoons:GetChildren()) do local owner = i.TycoonClaimer.ClaimTycoonPart.SurfaceGui.TextLabel.Text if owner == displayName then localTycoon = i break end end local boxes = localTycoon.Boxes.FullBoxes if not localTycoon.Buyables.Upgraders.Colorizer1.UpgradePart and not localTycoon.Buyables.Upgraders.Reinforcer1.UpgradePart then boxes.ChildAdded:Connect(function() task.wait(2.5) for _, i in pairs(boxes:GetChildren()) do local boxModel = i.BoxModel local ownershipPart = nil for _, i in pairs(boxModel:GetChildren()) do if not i:IsA("BasePart") then continue end if isnetworkowner(i) then ownershipPart = i break end end ownershipPart.CFrame = CFrame.new(1750.8335, 20, -803.560059, 1, 0, 0, 0, 1, 0, 0, 0, 1) end end) else local upgrade1 = localTycoon.Buyables.Upgraders.Colorizer1.UpgradePart local upgrade2 = localTycoon.Buyables.Upgraders.Reinforcer1.UpgradePart boxes.ChildAdded:Connect(function() task.wait(2.5) for _, i in pairs(boxes:GetChildren()) do local boxModel = i.BoxModel local ownershipPart = nil for _, i in pairs(boxModel:GetChildren()) do if not i:IsA("BasePart") then continue end if isnetworkowner(i) then ownershipPart = i break end end ownershipPart.CFrame = upgrade1.CFrame task.wait(0.2) if ownershipPart.Parent.Parent.Name == "ReinforcedBox4" then ownershipPart.CFrame = CFrame.new(1750.8335, 20, -803.560059, 1, 0, 0, 0, 1, 0, 0, 0, 1) else ownershipPart.CFrame = upgrade2.CFrame end task.wait(0.3) ownershipPart.CFrame = CFrame.new(1750.8335, 20, -803.560059, 1, 0, 0, 0, 1, 0, 0, 0, 1) end end) end WindUI:Notify({ Title = "Script", Content = "Loaded", Duration = 5, Icon = "archive", })