Gui by Me

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

local Players = game:GetService("Players")

local LocalPlayer = Players.LocalPlayer

local Gui = Instance.new("ScreenGui")


Gui.Name = "KickGui"
Gui.Parent = LocalPlayer:WaitForChild("PlayerGui")

local Frame = Instance.new("Frame")


Frame.Size = UDim2.new(0, 250, 0, 200)
Frame.Position = UDim2.new(0.5, -100, 0.5, -60)
Frame.BackgroundColor3 = Color3.new(0, 0, 0)
Frame.BackgroundTransparency = 0.0
Frame.Active = true -- Enable user interaction on mobile
Frame.Draggable = true -- Make the frame draggable on mobile
Frame.Parent = Gui

local Heading = Instance.new("TextLabel")


Heading.Size = UDim2.new(1, -20, 0, 30)
Heading.Position = UDim2.new(0, 9, 0, 10)
Heading.BackgroundColor3 = Color3.new(0, 0, 0)
Heading.TextColor3 = Color3.new(255, 255, 255)
Heading.Font = Enum.Font.FredokaOne
Heading.TextSize = 19
Heading.Text = "‫ اللغة‬/ language "
Heading.Parent = Frame

You might also like