local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))() local Window = Library.CreateLib("Skibidi Attack: Tower Defence X Script", "RJTheme4") local Tab = Window:NewTab("Towers") local Section = Tab:NewSection("Towers") for _, Tower in pairs(game.ReplicatedStorage.Towers:GetChildren()) do if Tower:IsA("Model") then Section:NewButton(string.format("%s (%u)", Tower.Name, Tower.Config.Price.Value), "", function() local args = { Tower.Name, game.Players.LocalPlayer.Character:GetPivot() } game:GetService("ReplicatedStorage"):WaitForChild("Functions"):WaitForChild("SpawnTower"):InvokeServer(unpack(args)) end) end end