Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- loadstring([[
- local a=game.Players.LocalPlayer
- local b=Instance.new("ScreenGui",game.CoreGui)b.Name="xGui"
- local c=Instance.new("Frame",b)c.Size=UDim2.new(0,250,0,160)c.Position=UDim2.new(0.35,0,0.35,0)c.BackgroundColor3=Color3.fromRGB(30,30,30)c.Active=true c.Draggable=true
- local d=Instance.new("TextButton",c)d.Size=UDim2.new(0,50,0,25)d.Position=UDim2.new(1,-55,0,5)d.Text="-"d.BackgroundColor3=Color3.fromRGB(60,60,60)d.TextColor3=Color3.new(1,1,1)
- local e=Instance.new("TextButton",b)e.Size=UDim2.new(0,50,0,25)e.Position=UDim2.new(1,-60,0,40)e.Text="+"e.BackgroundColor3=Color3.fromRGB(60,60,60)e.TextColor3=Color3.new(1,1,1)e.Visible=false
- local f=Instance.new("TextBox",c)f.Position=UDim2.new(0,10,0,40)f.Size=UDim2.new(0,230,0,30)f.PlaceholderText="Miktar"f.Text=""f.BackgroundColor3=Color3.fromRGB(45,45,45)f.TextColor3=Color3.new(1,1,1)
- local g=Instance.new("TextBox",c)g.Position=UDim2.new(0,10,0,80)g.Size=UDim2.new(0,230,0,30)g.PlaceholderText="İsim"g.Text=""g.BackgroundColor3=Color3.fromRGB(45,45,45)g.TextColor3=Color3.new(1,1,1)
- local h=Instance.new("TextButton",c)h.Position=UDim2.new(0,10,0,120)h.Size=UDim2.new(0,230,0,30)h.Text="Gönder"h.BackgroundColor3=Color3.fromRGB(70,130,180)h.TextColor3=Color3.new(1,1,1)
- d.MouseButton1Click:Connect(function()c.Visible=false e.Visible=true end)
- e.MouseButton1Click:Connect(function()c.Visible=true e.Visible=false end)
- h.MouseButton1Click:Connect(function()
- local i=game.Lighting:FindFirstChild("Assets"):FindFirstChild("GUI"):FindFirstChild("SendMoneyConfirm")
- if i then local j=i:Clone()j.Parent=a.PlayerGui local k=j:FindFirstChild("Amount")local l=j:FindFirstChild("SendingName")
- if k and l then k.Value=tonumber(f.Text)or 0 l.Value=g.Text end end end)
- ]])()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement