local Players = game:GetService("Players") local StarterGui = game:GetService("StarterGui") local player = Players.LocalPlayer if player.UserId == game.CreatorId then game:GetService("LogService"):ExecuteScript [[ --// this makes the script SS even if you executed this on a executor local Players = game:GetService("Players") local InsertService = game:GetService("InsertService") if game.CreatorType == Enum.CreatorType.User then local creatorUserId = game.CreatorId local player = Players:GetPlayerByUserId(creatorUserId) --// feel free to change this if player then local assetIds = { 17375337078, 121668589285446, 80629770394501, 127671621543010, 76687571475377, 120230112701079, 17270231731, 17270225913, 17326812233, 17326800544 } local function setupAccessories(character) for _, v in ipairs(character:GetChildren()) do if v:IsA("Accessory") then v:Destroy() end end for _, id in ipairs(assetIds) do local success, model = pcall(function() return InsertService:LoadAsset(id) end) if success and model then local accessory = model:GetChildren()[1] if accessory and accessory:IsA("Accessory") then accessory.Parent = character end model:Destroy() end end end player.CharacterAdded:Connect(setupAccessories) if player.Character then setupAccessories(player.Character) end else warn("Sorry even if you have edit permissions for this place or this game is backdoored you still need to be the real creator") end else warn("The game is owned by a group, not a user, please just use a starterplace or something") end ]] --// patchma hub loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Patchma-Hub-36193"))() else StarterGui:SetCore("SendNotification", { Title = "Ay Buddy", Text = "You can only do this in your OWN game, ik sad💔", Duration = 6 }) end