local intro = Instance.new("ScreenGui") intro.Parent = game.CoreGui intro.ResetOnSpawn = false local frame = Instance.new("Frame", intro) frame.Size = UDim2.new(0, 400, 0, 200) frame.Position = UDim2.new(0.5, -200, 0.5, -100) frame.BackgroundColor3 = Color3.fromRGB(20, 20, 30) frame.BorderSizePixel = 0 frame.BackgroundTransparency = 0.3 local corner = Instance.new("UICorner", frame) corner.CornerRadius = UDim.new(0, 12) local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0.4, 0) title.Position = UDim2.new(0, 0, 0.1, 0) title.BackgroundTransparency = 1 title.Text = "ADMIN CHARACTER\n don't steal or reupload" title.TextColor3 = Color3.fromRGB(0, 255, 150) title.TextSize = 32 title.Font = Enum.Font.GothamBlack title.TextStrokeTransparency = 0.8 title.TextStrokeColor3 = Color3.fromRGB(0, 0, 0) local credit = Instance.new("TextLabel", frame) credit.Size = UDim2.new(1, 0, 0.3, 0) credit.Position = UDim2.new(0, 0, 0.5, 0) credit.BackgroundTransparency = 1 credit.Text = "Made by Scripterblabla\n on ScriptBlox" credit.TextColor3 = Color3.fromRGB(200, 200, 255) credit.TextSize = 24 credit.Font = Enum.Font.Gotham credit.TextStrokeTransparency = 0.9 local tweenService = game:GetService("TweenService") local tweenInfo = TweenInfo.new(1.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out) tweenService:Create(frame, tweenInfo, {BackgroundTransparency = 0.1}):Play() wait(4) tweenService:Create(frame, tweenInfo, {BackgroundTransparency = 1}):Play() for _, child in ipairs(frame:GetChildren()) do if child:IsA("TextLabel") then tweenService:Create(child, tweenInfo, {TextTransparency = 1}):Play() end end wait(2) intro:Destroy() game:GetService("Players").LocalPlayer.PlayerGui.TopbarPlus.TopbarContainer.Characters.DropdownContainer.DropdownFrame["Special"].Visible=true local Event = game:GetService("ReplicatedStorage").Remotes.Comunicator.Set Event:FireServer( "SetMoveset", "Special" )