Steamhesaproblox

Roblox Secret Script:d

May 19th, 2025 (edited)
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
RBScript 5.38 KB | Gaming | 0 0
  1. local TweenService = game:GetService("TweenService")
  2. local Player = game:GetService("Players").LocalPlayer
  3. local UserInputService = game:GetService("UserInputService")
  4. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  5. local TextChatService = game:GetService("TextChatService")
  6.  
  7. local ScreenGui = Instance.new("ScreenGui", game.CoreGui)
  8. ScreenGui.Name = "ChatMoneyGui"
  9.  
  10. local Frame = Instance.new("Frame", ScreenGui)
  11. Frame.AnchorPoint = Vector2.new(0,0)
  12. Frame.Position = UDim2.new(0.1,0,0.1,0)
  13. Frame.Size = UDim2.new(0,240,0,280)
  14. Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  15. Frame.Visible = false
  16. Instance.new("UICorner", Frame).CornerRadius = UDim.new(0,8)
  17. Instance.new("UIStroke", Frame).Thickness = 2
  18.  
  19. local Title = Instance.new("TextLabel", Frame)
  20. Title.Size = UDim2.new(1,0,0,25)
  21. Title.BackgroundTransparency = 1
  22. Title.Text = "💰 Chat & Para GUI 💰"
  23. Title.TextColor3 = Color3.new(1,1,1)
  24. Title.TextScaled = true
  25. Title.Font = Enum.Font.Gotham
  26.  
  27. local Box = Instance.new("TextBox", Frame)
  28. Box.Position = UDim2.new(0.05,0,0.12,0)
  29. Box.Size = UDim2.new(0.9,0,0.15,0)
  30. Box.PlaceholderText = "Spam mesajını yaz..."
  31. Box.Text = ""
  32. Box.TextScaled = true
  33. Box.TextColor3 = Color3.new(1, 1, 1)
  34. Box.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  35. Instance.new("UICorner", Box).CornerRadius = UDim.new(0,5)
  36.  
  37. local SpamButton = Instance.new("TextButton", Frame)
  38. SpamButton.Position = UDim2.new(0.05,0,0.3,0)
  39. SpamButton.Size = UDim2.new(0.9,0,0.12,0)
  40. SpamButton.Text = "Start Spam"
  41. SpamButton.TextScaled = true
  42. SpamButton.Font = Enum.Font.Gotham
  43. SpamButton.TextColor3 = Color3.new(1, 1, 1)
  44. SpamButton.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  45. Instance.new("UICorner", SpamButton).CornerRadius = UDim.new(0,5)
  46.  
  47. local MoneyButton = Instance.new("TextButton", Frame)
  48. MoneyButton.Position = UDim2.new(0.05,0,0.45,0)
  49. MoneyButton.Size = UDim2.new(0.9,0,0.12,0)
  50. MoneyButton.Text = "💸 1M Para Al"
  51. MoneyButton.TextScaled = true
  52. MoneyButton.Font = Enum.Font.Gotham
  53. MoneyButton.TextColor3 = Color3.new(1, 1, 1)
  54. MoneyButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0)
  55. Instance.new("UICorner", MoneyButton).CornerRadius = UDim.new(0,5)
  56.  
  57. local InfiniteMoneyButton = Instance.new("TextButton", Frame)
  58. InfiniteMoneyButton.Position = UDim2.new(0.05,0,0.6,0)
  59. InfiniteMoneyButton.Size = UDim2.new(0.9,0,0.12,0)
  60. InfiniteMoneyButton.Text = "Sınırsız Para: OFF"
  61. InfiniteMoneyButton.TextScaled = true
  62. InfiniteMoneyButton.Font = Enum.Font.Gotham
  63. InfiniteMoneyButton.TextColor3 = Color3.new(1, 1, 1)
  64. InfiniteMoneyButton.BackgroundColor3 = Color3.fromRGB(200, 80, 80)
  65. Instance.new("UICorner", InfiniteMoneyButton).CornerRadius = UDim.new(0,5)
  66.  
  67. local ToggleButton = Instance.new("TextButton", ScreenGui)
  68. ToggleButton.Position = UDim2.new(0,10,0,10)
  69. ToggleButton.Size = UDim2.new(0,40,0,40)
  70. ToggleButton.Text = "☰"
  71. ToggleButton.TextScaled = true
  72. ToggleButton.Font = Enum.Font.Gotham
  73. ToggleButton.TextColor3 = Color3.new(1,1,1)
  74. ToggleButton.BackgroundColor3 = Color3.fromRGB(40,40,40)
  75. Instance.new("UICorner", ToggleButton).CornerRadius = UDim.new(0,8)
  76.  
  77. local function enableDragging(frame)
  78.     local dragging, dragInput, dragStart, startPos
  79.     local function update(input)
  80.         local delta = input.Position - dragStart
  81.         frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  82.     end
  83.     frame.InputBegan:Connect(function(input)
  84.         if input.UserInputType == Enum.UserInputType.MouseButton1 then
  85.             dragging = true
  86.             dragStart = input.Position
  87.             startPos = frame.Position
  88.             input.Changed:Connect(function()
  89.                 if input.UserInputState == Enum.UserInputState.End then
  90.                     dragging = false
  91.                 end
  92.             end)
  93.         end
  94.     end)
  95.     UserInputService.InputChanged:Connect(function(input)
  96.         if input.UserInputType == Enum.UserInputType.MouseMovement and dragging then
  97.             update(input)
  98.         end
  99.     end)
  100. end
  101.  
  102. enableDragging(Frame)
  103. enableDragging(ToggleButton)
  104.  
  105. local active, infiniteMoney = false, false
  106. local message = ""
  107.  
  108. Box.FocusLost:Connect(function()
  109.     message = Box.Text
  110. end)
  111.  
  112. SpamButton.MouseButton1Click:Connect(function()
  113.     active = not active
  114.     SpamButton.Text = active and "Stop Spam" or "Start Spam"
  115. end)
  116.  
  117. ToggleButton.MouseButton1Click:Connect(function()
  118.     Frame.Visible = not Frame.Visible
  119. end)
  120.  
  121. MoneyButton.MouseButton1Click:Connect(function()
  122.     local args = {[1]="withdraw",[2]=1000000}
  123.     ReplicatedStorage:WaitForChild("ATMRF"):InvokeServer(unpack(args))
  124. end)
  125.  
  126. InfiniteMoneyButton.MouseButton1Click:Connect(function()
  127.     infiniteMoney = not infiniteMoney
  128.     InfiniteMoneyButton.Text = infiniteMoney and "Sınırsız Para: ON" or "Sınırsız Para: OFF"
  129.     InfiniteMoneyButton.BackgroundColor3 = infiniteMoney and Color3.fromRGB(0,200,0) or Color3.fromRGB(200,80,80)
  130. end)
  131.  
  132. task.spawn(function()
  133.     while true do
  134.         task.wait(0.1)
  135.        
  136.         -- Chat spam aktifse mesaj gönder
  137.         if active and message ~= "" then
  138.             pcall(function()
  139.                 TextChatService.TextChannels.RBXGeneral:SendAsync(message)
  140.             end)
  141.         end
  142.        
  143.         -- Sınırsız para aktifse iÅŸlemler
  144.         if infiniteMoney then
  145.             -- withdraw iÅŸlemi (direkt anlık)
  146.             pcall(function()
  147.                 local args = {[1]="withdraw",[2]=1000000}
  148.                 ReplicatedStorage:WaitForChild("ATMRF"):InvokeServer(unpack(args))
  149.             end)
  150.            
  151.             -- /pay spam 0.60 saniyede bir
  152.             pcall(function()
  153.                 TextChatService.TextChannels.RBXGeneral:SendAsync("/pay 999999")
  154.             end)
  155.            
  156.             task.wait(0.45)
  157.         end
  158.     end
  159. end)
  160.  
Add Comment
Please, Sign In to add comment