Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local TweenService = game:GetService("TweenService")
- local Player = game:GetService("Players").LocalPlayer
- local UserInputService = game:GetService("UserInputService")
- local ReplicatedStorage = game:GetService("ReplicatedStorage")
- local TextChatService = game:GetService("TextChatService")
- local ScreenGui = Instance.new("ScreenGui", game.CoreGui)
- ScreenGui.Name = "ChatMoneyGui"
- local Frame = Instance.new("Frame", ScreenGui)
- Frame.AnchorPoint = Vector2.new(0,0)
- Frame.Position = UDim2.new(0.1,0,0.1,0)
- Frame.Size = UDim2.new(0,240,0,280)
- Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Frame.Visible = false
- Instance.new("UICorner", Frame).CornerRadius = UDim.new(0,8)
- Instance.new("UIStroke", Frame).Thickness = 2
- local Title = Instance.new("TextLabel", Frame)
- Title.Size = UDim2.new(1,0,0,25)
- Title.BackgroundTransparency = 1
- Title.Text = "💰 Chat & Para GUI 💰"
- Title.TextColor3 = Color3.new(1,1,1)
- Title.TextScaled = true
- Title.Font = Enum.Font.Gotham
- local Box = Instance.new("TextBox", Frame)
- Box.Position = UDim2.new(0.05,0,0.12,0)
- Box.Size = UDim2.new(0.9,0,0.15,0)
- Box.PlaceholderText = "Spam mesajını yaz..."
- Box.Text = ""
- Box.TextScaled = true
- Box.TextColor3 = Color3.new(1, 1, 1)
- Box.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- Instance.new("UICorner", Box).CornerRadius = UDim.new(0,5)
- local SpamButton = Instance.new("TextButton", Frame)
- SpamButton.Position = UDim2.new(0.05,0,0.3,0)
- SpamButton.Size = UDim2.new(0.9,0,0.12,0)
- SpamButton.Text = "Start Spam"
- SpamButton.TextScaled = true
- SpamButton.Font = Enum.Font.Gotham
- SpamButton.TextColor3 = Color3.new(1, 1, 1)
- SpamButton.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
- Instance.new("UICorner", SpamButton).CornerRadius = UDim.new(0,5)
- local MoneyButton = Instance.new("TextButton", Frame)
- MoneyButton.Position = UDim2.new(0.05,0,0.45,0)
- MoneyButton.Size = UDim2.new(0.9,0,0.12,0)
- MoneyButton.Text = "💸 1M Para Al"
- MoneyButton.TextScaled = true
- MoneyButton.Font = Enum.Font.Gotham
- MoneyButton.TextColor3 = Color3.new(1, 1, 1)
- MoneyButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0)
- Instance.new("UICorner", MoneyButton).CornerRadius = UDim.new(0,5)
- local InfiniteMoneyButton = Instance.new("TextButton", Frame)
- InfiniteMoneyButton.Position = UDim2.new(0.05,0,0.6,0)
- InfiniteMoneyButton.Size = UDim2.new(0.9,0,0.12,0)
- InfiniteMoneyButton.Text = "Sınırsız Para: OFF"
- InfiniteMoneyButton.TextScaled = true
- InfiniteMoneyButton.Font = Enum.Font.Gotham
- InfiniteMoneyButton.TextColor3 = Color3.new(1, 1, 1)
- InfiniteMoneyButton.BackgroundColor3 = Color3.fromRGB(200, 80, 80)
- Instance.new("UICorner", InfiniteMoneyButton).CornerRadius = UDim.new(0,5)
- local ToggleButton = Instance.new("TextButton", ScreenGui)
- ToggleButton.Position = UDim2.new(0,10,0,10)
- ToggleButton.Size = UDim2.new(0,40,0,40)
- ToggleButton.Text = "☰"
- ToggleButton.TextScaled = true
- ToggleButton.Font = Enum.Font.Gotham
- ToggleButton.TextColor3 = Color3.new(1,1,1)
- ToggleButton.BackgroundColor3 = Color3.fromRGB(40,40,40)
- Instance.new("UICorner", ToggleButton).CornerRadius = UDim.new(0,8)
- local function enableDragging(frame)
- local dragging, dragInput, dragStart, startPos
- local function update(input)
- 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
- frame.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- dragging = true
- dragStart = input.Position
- startPos = frame.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragging = false
- end
- end)
- end
- end)
- UserInputService.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement and dragging then
- update(input)
- end
- end)
- end
- enableDragging(Frame)
- enableDragging(ToggleButton)
- local active, infiniteMoney = false, false
- local message = ""
- Box.FocusLost:Connect(function()
- message = Box.Text
- end)
- SpamButton.MouseButton1Click:Connect(function()
- active = not active
- SpamButton.Text = active and "Stop Spam" or "Start Spam"
- end)
- ToggleButton.MouseButton1Click:Connect(function()
- Frame.Visible = not Frame.Visible
- end)
- MoneyButton.MouseButton1Click:Connect(function()
- local args = {[1]="withdraw",[2]=1000000}
- ReplicatedStorage:WaitForChild("ATMRF"):InvokeServer(unpack(args))
- end)
- InfiniteMoneyButton.MouseButton1Click:Connect(function()
- infiniteMoney = not infiniteMoney
- InfiniteMoneyButton.Text = infiniteMoney and "Sınırsız Para: ON" or "Sınırsız Para: OFF"
- InfiniteMoneyButton.BackgroundColor3 = infiniteMoney and Color3.fromRGB(0,200,0) or Color3.fromRGB(200,80,80)
- end)
- task.spawn(function()
- while true do
- task.wait(0.1)
- -- Chat spam aktifse mesaj gönder
- if active and message ~= "" then
- pcall(function()
- TextChatService.TextChannels.RBXGeneral:SendAsync(message)
- end)
- end
- -- Sınırsız para aktifse işlemler
- if infiniteMoney then
- -- withdraw işlemi (direkt anlık)
- pcall(function()
- local args = {[1]="withdraw",[2]=1000000}
- ReplicatedStorage:WaitForChild("ATMRF"):InvokeServer(unpack(args))
- end)
- -- /pay spam 0.60 saniyede bir
- pcall(function()
- TextChatService.TextChannels.RBXGeneral:SendAsync("/pay 999999")
- end)
- task.wait(0.45)
- end
- end
- end)
Add Comment
Please, Sign In to add comment