local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local UIS = game:GetService("UserInputService") local TextChatService = game:GetService("TextChatService") local player = Players.LocalPlayer local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = player:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false local function addCorner(obj,r) local c = Instance.new("UICorner") c.CornerRadius = UDim.new(0,r) c.Parent = obj end local function buttonEffect(button) local original = button.Size button.MouseEnter:Connect(function() TweenService:Create(button, TweenInfo.new(.15), {Size = original + UDim2.new(.02,0,.02,0)}):Play() end) button.MouseLeave:Connect(function() TweenService:Create(button, TweenInfo.new(.15), {Size = original}):Play() end) end local function makeDraggable(frame) local dragToggle = false local dragStart local startPos frame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragToggle = true dragStart = input.Position startPos = frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragToggle = false end end) end end) UIS.InputChanged:Connect(function(input) if dragToggle and (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then local delta = input.Position - dragStart frame.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end end) end local Frame = Instance.new("Frame") Frame.Parent = ScreenGui Frame.AnchorPoint = Vector2.new(.5,.5) Frame.Position = UDim2.new(.5,0,.5,0) Frame.Size = UDim2.new(.35,0,.35,0) Frame.BackgroundColor3 = Color3.fromRGB(40,40,40) Frame.BackgroundTransparency = 0.2 Frame.Visible = false addCorner(Frame,12) local stroke = Instance.new("UIStroke") stroke.Parent = Frame stroke.Color = Color3.fromRGB(120,120,120) stroke.Transparency = 0.3 stroke.Thickness = 2 local title = Instance.new("TextLabel") title.Parent = Frame title.Size = UDim2.new(.6,0,.12,0) title.Position = UDim2.new(.2,0,-.2,0) title.BackgroundTransparency = 1 title.Text = "FakeVerified V3" title.TextScaled = true title.Font = Enum.Font.GothamBold title.TextColor3 = Color3.fromRGB(255,255,255) local gradient = Instance.new("UIGradient") gradient.Parent = title gradient.Color = ColorSequence.new{ ColorSequenceKeypoint.new(0,Color3.fromRGB(0,170,255)), ColorSequenceKeypoint.new(1,Color3.fromRGB(0,255,127)) } local closeMain = Instance.new("TextButton") closeMain.Parent = Frame closeMain.Position = UDim2.new(.9,0,0,0) closeMain.Size = UDim2.new(.1,0,.12,0) closeMain.Text = "X" closeMain.TextScaled = true closeMain.BackgroundTransparency = 1 closeMain.TextColor3 = Color3.new(1,1,1) local minimize = Instance.new("TextButton") minimize.Parent = Frame minimize.Position = UDim2.new(.8,0,0,0) minimize.Size = UDim2.new(.1,0,.12,0) minimize.Text = "-" minimize.TextScaled = true minimize.BackgroundTransparency = 1 minimize.TextColor3 = Color3.new(1,1,1) local message = Instance.new("TextBox") message.Parent = Frame message.Position = UDim2.new(.03,0,.18,0) message.Size = UDim2.new(.55,0,.7,0) message.TextWrapped = true message.TextScaled = true message.TextXAlignment = Enum.TextXAlignment.Left message.TextYAlignment = Enum.TextYAlignment.Top message.Text = "" addCorner(message,8) local send = Instance.new("TextButton") send.Parent = Frame send.Position = UDim2.new(.62,0,.18,0) send.Size = UDim2.new(.35,0,.15,0) send.Text = "Send" send.TextScaled = true send.BackgroundColor3 = Color3.fromRGB(0,255,85) addCorner(send,8) local copy = Instance.new("TextButton") copy.Parent = Frame copy.Position = UDim2.new(.62,0,.4,0) copy.Size = UDim2.new(.35,0,.15,0) copy.Text = "Copy" copy.TextScaled = true copy.BackgroundColor3 = Color3.fromRGB(0,255,85) addCorner(copy,8) local clear = Instance.new("TextButton") clear.Parent = Frame clear.Position = UDim2.new(.62,0,.62,0) clear.Size = UDim2.new(.35,0,.15,0) clear.Text = "Clear" clear.TextScaled = true clear.BackgroundColor3 = Color3.fromRGB(0,255,85) addCorner(clear,8) local cat = Instance.new("ImageButton") cat.Parent = ScreenGui cat.Size = UDim2.new(.05,0,.08,0) cat.Position = UDim2.new(.4,0,.1,0) cat.Image = "rbxassetid://11176073563" cat.Visible = false addCorner(cat,10) buttonEffect(send) buttonEffect(copy) buttonEffect(clear) makeDraggable(Frame) makeDraggable(cat) local function openGui() Frame.Size = UDim2.new(0,0,0,0) Frame.Visible = true TweenService:Create(Frame,TweenInfo.new(.35,Enum.EasingStyle.Back,Enum.EasingDirection.Out), {Size = UDim2.new(.35,0,.35,0)}):Play() TweenService:Create(title,TweenInfo.new(.5,Enum.EasingStyle.Back,Enum.EasingDirection.Out), {Position = UDim2.new(.2,0,0,0)}):Play() end local function closeGui() local tween = TweenService:Create(Frame, TweenInfo.new(.35, Enum.EasingStyle.Back, Enum.EasingDirection.In), {Size = UDim2.new(0,0,0,0)}) tween:Play() tween.Completed:Connect(function() Frame.Visible = false cat.Visible = true end) end minimize.MouseButton1Click:Connect(closeGui) cat.MouseButton1Click:Connect(function() cat.Visible = false openGui() end) closeMain.MouseButton1Click:Connect(closeGui) send.MouseButton1Click:Connect(function() local msg = message.Text if msg == "" then return end message.Text = "" -- kutuyu temizle local channel = TextChatService.TextChannels:WaitForChild("RBXGeneral") channel:SendAsync(" "..msg) end) copy.MouseButton1Click:Connect(function() if setclipboard then setclipboard(message.Text) end end) clear.MouseButton1Click:Connect(function() message.Text = "" end) openGui()