Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- local TweenService = game:GetService("TweenService")
- local LocalPlayer = Players.LocalPlayer
- local UserInputService = game:GetService("UserInputService")
- local RunService = game:GetService("RunService")
- -- Create the ScreenGui with feminine design
- local ScreenGui = Instance.new("ScreenGui")
- ScreenGui.Parent = game.CoreGui
- ScreenGui.Name = "GirlyNeonGUI"
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- -- Main Frame with elegant design
- local MainFrame = Instance.new("Frame")
- MainFrame.Parent = ScreenGui
- MainFrame.Size = UDim2.new(0, 320, 0, 180)
- MainFrame.Position = UDim2.new(0.5, -160, 0.5, -90)
- MainFrame.BackgroundColor3 = Color3.fromRGB(25, 15, 25)
- MainFrame.BorderSizePixel = 0
- MainFrame.Draggable = true
- MainFrame.Active = true
- MainFrame.ClipsDescendants = true
- -- Add elegant floral pattern to background
- local BackgroundPattern = Instance.new("ImageLabel")
- BackgroundPattern.Parent = MainFrame
- BackgroundPattern.Size = UDim2.new(1, 0, 1, 0)
- BackgroundPattern.Image = "rbxassetid://13831851435" -- Floral pattern
- BackgroundPattern.ImageColor3 = Color3.fromRGB(80, 10, 50)
- BackgroundPattern.ImageTransparency = 0.9
- BackgroundPattern.ScaleType = Enum.ScaleType.Tile
- BackgroundPattern.TileSize = UDim2.new(0, 100, 0, 100)
- BackgroundPattern.ZIndex = 0
- -- Rounded corners
- local UICorner = Instance.new("UICorner")
- UICorner.Parent = MainFrame
- UICorner.CornerRadius = UDim.new(0, 14)
- -- Pink neon glow
- local glow = Instance.new("ImageLabel")
- glow.Parent = MainFrame
- glow.Size = UDim2.new(1, 20, 1, 20)
- glow.Position = UDim2.new(0, -10, 0, -10)
- glow.BackgroundTransparency = 1
- glow.Image = "rbxassetid://5028857084"
- glow.ImageColor3 = Color3.fromRGB(255, 100, 200)
- glow.ScaleType = Enum.ScaleType.Slice
- glow.SliceCenter = Rect.new(24, 24, 276, 276)
- glow.ZIndex = 0
- -- Pulsing glow animation
- RunService.Heartbeat:Connect(function()
- local pulse = math.sin(tick() * 5) * 0.1 + 0.9
- glow.ImageTransparency = 1 - (pulse * 0.6)
- end)
- -- Elegant Title Bar
- local TitleBar = Instance.new("Frame")
- TitleBar.Parent = MainFrame
- TitleBar.Size = UDim2.new(1, 0, 0, 32)
- TitleBar.BackgroundColor3 = Color3.fromRGB(40, 20, 40)
- TitleBar.BorderSizePixel = 0
- -- Title glow effect
- local titleGlow = Instance.new("Frame")
- titleGlow.Parent = TitleBar
- titleGlow.Size = UDim2.new(1, 0, 1, 0)
- titleGlow.BackgroundColor3 = Color3.fromRGB(255, 120, 200)
- titleGlow.BorderSizePixel = 0
- titleGlow.BackgroundTransparency = 0.85
- titleGlow.ZIndex = 0
- -- Pretty Title Label
- local TitleLabel = Instance.new("TextLabel")
- TitleLabel.Parent = TitleBar
- TitleLabel.Size = UDim2.new(0, 180, 1, 0)
- TitleLabel.Position = UDim2.new(0, 10, 0, 0)
- TitleLabel.Text = "يتغصبك الاعب | ممارسه جنسيه 👙💋"
- TitleLabel.TextColor3 = Color3.fromRGB(255, 200, 230)
- TitleLabel.BackgroundTransparency = 1
- TitleLabel.Font = Enum.Font.GothamSemibold
- TitleLabel.TextSize = 14
- TitleLabel.TextXAlignment = Enum.TextXAlignment.Left
- TitleLabel.ZIndex = 2
- -- Heart icon
- local HeartIcon = Instance.new("ImageLabel")
- HeartIcon.Parent = TitleLabel
- HeartIcon.Size = UDim2.new(0, 16, 0, 16)
- HeartIcon.Position = UDim2.new(0, -20, 0.5, -8)
- HeartIcon.Image = "rbxassetid://11348122410"
- HeartIcon.ImageColor3 = Color3.fromRGB(255, 120, 200)
- HeartIcon.BackgroundTransparency = 1
- HeartIcon.ZIndex = 2
- -- Elegant Close Button
- local CloseButton = Instance.new("TextButton")
- CloseButton.Parent = TitleBar
- CloseButton.Size = UDim2.new(0, 32, 1, 0)
- CloseButton.Position = UDim2.new(1, -32, 0, 0)
- CloseButton.Text = "X"
- CloseButton.TextColor3 = Color3.fromRGB(255, 180, 220)
- CloseButton.BackgroundColor3 = Color3.fromRGB(80, 30, 60)
- CloseButton.BorderSizePixel = 0
- CloseButton.Font = Enum.Font.GothamBold
- CloseButton.TextSize = 18
- CloseButton.ZIndex = 2
- -- Close button glow
- local closeGlow = Instance.new("Frame")
- closeGlow.Parent = CloseButton
- closeGlow.Size = UDim2.new(1, 0, 1, 0)
- closeGlow.BackgroundColor3 = Color3.fromRGB(255, 100, 150)
- closeGlow.BorderSizePixel = 0
- closeGlow.BackgroundTransparency = 0.9
- closeGlow.ZIndex = 1
- -- Close button animations
- CloseButton.MouseEnter:Connect(function()
- TweenService:Create(closeGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(CloseButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
- end)
- CloseButton.MouseLeave:Connect(function()
- TweenService:Create(closeGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.9}):Play()
- TweenService:Create(CloseButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 180, 220)}):Play()
- end)
- CloseButton.MouseButton1Down:Connect(function()
- TweenService:Create(closeGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.5}):Play()
- TweenService:Create(CloseButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 150, 180)}):Play()
- end)
- CloseButton.MouseButton1Up:Connect(function()
- TweenService:Create(closeGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(CloseButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
- wait(0.1)
- ScreenGui:Destroy()
- end)
- -- Minimize Button with flower icon
- local MinimizeButton = Instance.new("TextButton")
- MinimizeButton.Parent = TitleBar
- MinimizeButton.Size = UDim2.new(0, 32, 1, 0)
- MinimizeButton.Position = UDim2.new(1, -70, 0, 0)
- MinimizeButton.Text = "-"
- MinimizeButton.TextColor3 = Color3.fromRGB(255, 180, 220)
- MinimizeButton.BackgroundColor3 = Color3.fromRGB(70, 30, 60)
- MinimizeButton.BorderSizePixel = 0
- MinimizeButton.Font = Enum.Font.GothamBold
- MinimizeButton.TextSize = 16
- MinimizeButton.ZIndex = 2
- local minimizeGlow = Instance.new("Frame")
- minimizeGlow.Parent = MinimizeButton
- minimizeGlow.Size = UDim2.new(1, 0, 1, 0)
- minimizeGlow.BackgroundColor3 = Color3.fromRGB(200, 100, 200)
- minimizeGlow.BorderSizePixel = 0
- minimizeGlow.BackgroundTransparency = 0.9
- minimizeGlow.ZIndex = 1
- -- Minimize button animations
- MinimizeButton.MouseEnter:Connect(function()
- TweenService:Create(minimizeGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(MinimizeButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
- end)
- MinimizeButton.MouseLeave:Connect(function()
- TweenService:Create(minimizeGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.9}):Play()
- TweenService:Create(MinimizeButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 180, 220)}):Play()
- end)
- MinimizeButton.MouseButton1Down:Connect(function()
- TweenService:Create(minimizeGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.5}):Play()
- TweenService:Create(MinimizeButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 150, 180)}):Play()
- end)
- MinimizeButton.MouseButton1Up:Connect(function()
- TweenService:Create(minimizeGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(MinimizeButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
- end)
- -- Minimize functionality with animation
- local minimized = false
- MinimizeButton.MouseButton1Click:Connect(function()
- if not minimized then
- TweenService:Create(MainFrame, TweenInfo.new(0.3, Enum.EasingStyle.Quint), {Size = UDim2.new(0, 320, 0, 32)}):Play()
- MinimizeButton.Text = "❁"
- else
- TweenService:Create(MainFrame, TweenInfo.new(0.3, Enum.EasingStyle.Quint), {Size = UDim2.new(0, 320, 0, 180)}):Play()
- MinimizeButton.Text = "❀"
- end
- minimized = not minimized
- end)
- -- Player List Button (NEW FEATURE)
- local PlayerListButton = Instance.new("TextButton")
- PlayerListButton.Parent = TitleBar
- PlayerListButton.Size = UDim2.new(0, 32, 1, 0)
- PlayerListButton.Position = UDim2.new(1, -108, 0, 0)
- PlayerListButton.Text = "👥"
- PlayerListButton.TextColor3 = Color3.fromRGB(255, 180, 220)
- PlayerListButton.BackgroundColor3 = Color3.fromRGB(60, 25, 50)
- PlayerListButton.BorderSizePixel = 0
- PlayerListButton.Font = Enum.Font.GothamBold
- PlayerListButton.TextSize = 16
- PlayerListButton.ZIndex = 2
- local playerListGlow = Instance.new("Frame")
- playerListGlow.Parent = PlayerListButton
- playerListGlow.Size = UDim2.new(1, 0, 1, 0)
- playerListGlow.BackgroundColor3 = Color3.fromRGB(180, 100, 220)
- playerListGlow.BorderSizePixel = 0
- playerListGlow.BackgroundTransparency = 0.9
- playerListGlow.ZIndex = 1
- -- Player List Button animations
- PlayerListButton.MouseEnter:Connect(function()
- TweenService:Create(playerListGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(PlayerListButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
- end)
- PlayerListButton.MouseLeave:Connect(function()
- TweenService:Create(playerListGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.9}):Play()
- TweenService:Create(PlayerListButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 180, 220)}):Play()
- end)
- PlayerListButton.MouseButton1Down:Connect(function()
- TweenService:Create(playerListGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.5}):Play()
- TweenService:Create(PlayerListButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 150, 180)}):Play()
- end)
- PlayerListButton.MouseButton1Up:Connect(function()
- TweenService:Create(playerListGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(PlayerListButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
- end)
- -- Player List Frame (NEW FEATURE)
- local PlayerListFrame = Instance.new("Frame")
- PlayerListFrame.Parent = MainFrame
- PlayerListFrame.Size = UDim2.new(0.9, 0, 0, 120)
- PlayerListFrame.Position = UDim2.new(0.05, 0, 0.3, 0)
- PlayerListFrame.BackgroundColor3 = Color3.fromRGB(35, 20, 35)
- PlayerListFrame.BorderSizePixel = 0
- PlayerListFrame.Visible = false
- local PlayerListScroll = Instance.new("ScrollingFrame")
- PlayerListScroll.Parent = PlayerListFrame
- PlayerListScroll.Size = UDim2.new(1, 0, 1, 0)
- PlayerListScroll.BackgroundTransparency = 1
- PlayerListScroll.ScrollBarThickness = 4
- PlayerListScroll.ScrollBarImageColor3 = Color3.fromRGB(255, 120, 200)
- local PlayerListLayout = Instance.new("UIListLayout")
- PlayerListLayout.Parent = PlayerListScroll
- PlayerListLayout.Padding = UDim.new(0, 5)
- -- Toggle Player List (NEW FEATURE)
- PlayerListButton.MouseButton1Click:Connect(function()
- PlayerListFrame.Visible = not PlayerListFrame.Visible
- TargetTextBox.Visible = not TargetTextBox.Visible
- ToggleButton.Visible = not ToggleButton.Visible
- if PlayerListFrame.Visible then
- -- Populate player list
- PlayerListScroll:ClearAllChildren()
- for _, player in pairs(Players:GetPlayers()) do
- if player ~= LocalPlayer then
- local playerButton = Instance.new("TextButton")
- playerButton.Parent = PlayerListScroll
- playerButton.Size = UDim2.new(1, -10, 0, 25)
- playerButton.Text = player.DisplayName .. " (@" .. player.Name .. ")"
- playerButton.TextColor3 = Color3.fromRGB(255, 200, 230)
- playerButton.BackgroundColor3 = Color3.fromRGB(50, 25, 45)
- playerButton.BorderSizePixel = 0
- playerButton.Font = Enum.Font.Gotham
- playerButton.TextSize = 12
- playerButton.TextXAlignment = Enum.TextXAlignment.Left
- local playerButtonGlow = Instance.new("Frame")
- playerButtonGlow.Parent = playerButton
- playerButtonGlow.Size = UDim2.new(1, 0, 1, 0)
- playerButtonGlow.BackgroundColor3 = Color3.fromRGB(255, 120, 200)
- playerButtonGlow.BorderSizePixel = 0
- playerButtonGlow.BackgroundTransparency = 0.9
- playerButtonGlow.ZIndex = -1
- playerButton.MouseEnter:Connect(function()
- TweenService:Create(playerButtonGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.8}):Play()
- end)
- playerButton.MouseLeave:Connect(function()
- TweenService:Create(playerButtonGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.9}):Play()
- end)
- playerButton.MouseButton1Click:Connect(function()
- TargetTextBox.Text = player.Name
- PlayerListFrame.Visible = false
- TargetTextBox.Visible = true
- ToggleButton.Visible = true
- end)
- end
- end
- end
- end)
- -- Pretty Text Box
- local TargetTextBox = Instance.new("TextBox")
- TargetTextBox.Parent = MainFrame
- TargetTextBox.Size = UDim2.new(0.9, 0, 0, 36)
- TargetTextBox.Position = UDim2.new(0.05, 0, 0.25, 0)
- TargetTextBox.PlaceholderText = "اسم الاعب الذي تريد ان تمارس معه👙"
- TargetTextBox.Text = ""
- TargetTextBox.TextColor3 = Color3.fromRGB(255, 220, 240)
- TargetTextBox.BackgroundColor3 = Color3.fromRGB(40, 25, 40)
- TargetTextBox.BorderSizePixel = 0
- TargetTextBox.Font = Enum.Font.Gotham
- TargetTextBox.TextSize = 14
- TargetTextBox.ZIndex = 2
- local textBoxGlow = Instance.new("Frame")
- textBoxGlow.Parent = TargetTextBox
- textBoxGlow.Size = UDim2.new(1, 0, 1, 0)
- textBoxGlow.BackgroundColor3 = Color3.fromRGB(255, 120, 200)
- textBoxGlow.BorderSizePixel = 0
- textBoxGlow.BackgroundTransparency = 0.9
- textBoxGlow.ZIndex = 1
- local textBoxCorner = Instance.new("UICorner")
- textBoxCorner.Parent = TargetTextBox
- textBoxCorner.CornerRadius = UDim.new(0, 8)
- -- Text box animations
- TargetTextBox.Focused:Connect(function()
- TweenService:Create(textBoxGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(TargetTextBox, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 230, 240)}):Play()
- end)
- TargetTextBox.FocusLost:Connect(function()
- TweenService:Create(textBoxGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.9}):Play()
- TweenService:Create(TargetTextBox, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
- end)
- -- Beautiful Toggle Button
- local ToggleButton = Instance.new("TextButton")
- ToggleButton.Parent = MainFrame
- ToggleButton.Size = UDim2.new(0.9, 0, 0, 36)
- ToggleButton.Position = UDim2.new(0.05, 0, 0.65, 0)
- ToggleButton.Text = "اشلح/ي"
- ToggleButton.TextColor3 = Color3.fromRGB(255, 220, 240)
- ToggleButton.BackgroundColor3 = Color3.fromRGB(60, 30, 55)
- ToggleButton.BorderSizePixel = 0
- ToggleButton.Font = Enum.Font.GothamSemibold
- ToggleButton.TextSize = 14
- ToggleButton.ZIndex = 2
- local toggleGlow = Instance.new("Frame")
- toggleGlow.Parent = ToggleButton
- toggleGlow.Size = UDim2.new(1, 0, 1, 0)
- toggleGlow.BackgroundColor3 = Color3.fromRGB(255, 100, 180)
- toggleGlow.BorderSizePixel = 0
- toggleGlow.BackgroundTransparency = 0.85
- toggleGlow.ZIndex = 1
- local toggleCorner = Instance.new("UICorner")
- toggleCorner.Parent = ToggleButton
- toggleCorner.CornerRadius = UDim.new(0, 8)
- -- Sparkle particles for button (NEW EFFECT)
- local sparkles = Instance.new("ParticleEmitter")
- sparkles.Parent = ToggleButton
- sparkles.LightEmission = 1
- sparkles.Size = NumberSequence.new(2)
- sparkles.Texture = "rbxassetid://242503421"
- sparkles.Color = ColorSequence.new(Color3.fromRGB(255, 150, 220))
- sparkles.Transparency = NumberSequence.new(0.5)
- sparkles.Speed = NumberRange.new(5)
- sparkles.Lifetime = NumberRange.new(0.5)
- sparkles.Rate = 0
- sparkles.Rotation = NumberRange.new(0, 360)
- sparkles.SpreadAngle = Vector2.new(0, 360)
- sparkles.ZOffset = 1
- -- Button animations
- ToggleButton.MouseEnter:Connect(function()
- TweenService:Create(toggleGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 230, 240)}):Play()
- sparkles.Rate = 20
- end)
- ToggleButton.MouseLeave:Connect(function()
- TweenService:Create(toggleGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.85}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
- sparkles.Rate = 0
- end)
- ToggleButton.MouseButton1Down:Connect(function()
- TweenService:Create(toggleGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.5}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 180, 200)}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.1), {Size = UDim2.new(0.85, 0, 0, 34)}):Play()
- end)
- ToggleButton.MouseButton1Up:Connect(function()
- TweenService:Create(toggleGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 230, 240)}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.1), {Size = UDim2.new(0.9, 0, 0, 36)}):Play()
- end)
- -- Original functionality with added features
- local following = false
- local targetPlayer = nil
- local animationId = "10714360343"
- local activeAnimation
- -- Pretty sound effects
- local clickSound = Instance.new("Sound")
- clickSound.Parent = ScreenGui
- clickSound.SoundId = "rbxassetid://138080962"
- clickSound.Volume = 0.4
- local toggleSound = Instance.new("Sound")
- toggleSound.Parent = ScreenGui
- toggleSound.SoundId = "rbxassetid://138080833"
- toggleSound.Volume = 0.5
- ToggleButton.MouseButton1Click:Connect(function()
- clickSound:Play()
- if not following then
- local targetName = TargetTextBox.Text:lower()
- targetPlayer = nil
- for _, player in pairs(Players:GetPlayers()) do
- if player.Name:lower():find(targetName) or player.DisplayName:lower():find(targetName) then
- targetPlayer = player
- break
- end
- end
- if targetPlayer and targetPlayer.Character then
- following = true
- ToggleButton.Text = "توقف/ي"
- toggleSound:Play()
- -- Play animation
- local humanoid = LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
- if humanoid then
- local animation = Instance.new("Animation")
- animation.AnimationId = "rbxassetid://" .. animationId
- activeAnimation = humanoid:LoadAnimation(animation)
- activeAnimation:Play()
- end
- -- Follow coroutine
- coroutine.wrap(function()
- while following do
- local targetCharacter = targetPlayer.Character
- if targetCharacter and targetCharacter.PrimaryPart then
- local forwardCFrame = targetCharacter.PrimaryPart.CFrame * CFrame.new(0, 0, -1.5)
- local backwardCFrame = targetCharacter.PrimaryPart.CFrame * CFrame.new(0, 0, -1.1)
- local tweenForward = TweenService:Create(
- LocalPlayer.Character.PrimaryPart,
- TweenInfo.new(0.15, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
- {CFrame = forwardCFrame}
- )
- tweenForward:Play()
- tweenForward.Completed:Wait()
- local tweenBackward = TweenService:Create(
- LocalPlayer.Character.PrimaryPart,
- TweenInfo.new(0.15, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
- {CFrame = backwardCFrame}
- )
- tweenBackward:Play()
- tweenBackward.Completed:Wait()
- else
- following = false
- ToggleButton.Text = "START FOLLOWING"
- break
- end
- end
- end)()
- else
- -- Play error sound
- local errorSound = Instance.new("Sound")
- errorSound.Parent = ScreenGui
- errorSound.SoundId = "rbxassetid://138080947"
- errorSound.Volume = 0.3
- errorSound:Play()
- errorSound:Destroy()
- end
- else
- following = false
- ToggleButton.Text = "اشلح/ي"
- toggleSound:Play()
- if activeAnimation then
- activeAnimation:Stop()
- activeAnimation = nil
- end
- end
- end)
- -- Auto-adjust player list size (NEW FEATURE)
- PlayerListLayout:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function()
- PlayerListScroll.CanvasSize = UDim2.new(0, 0, 0, PlayerListLayout.AbsoluteContentSize.Y)
- end)
Add Comment
Please, Sign In to add comment