Advertisement
xcrossy05

Created By YT: Xcrossy

May 31st, 2019
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. --ENJOY NIBBA
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local title = Instance.new("TextLabel")
  5. local toggleButton = Instance.new("TextButton")
  6.  
  7. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  8. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  9.  
  10. Frame.Parent = ScreenGui
  11. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  12. Frame.BackgroundTransparency = 0.20000000298023
  13. Frame.Position = UDim2.new(0.0166559666, 0, 0.471744478, 0)
  14. Frame.Size = UDim2.new(0, 177, 0, 45)
  15. Frame.BorderSizePixel = 0
  16. Frame.Active = true
  17. Frame.Draggable = true
  18.  
  19. title.Name = "title"
  20. title.Parent = Frame
  21. title.BackgroundColor3 = Color3.new(1, 1, 1)
  22. title.BackgroundTransparency = 1
  23. title.Size = UDim2.new(0, 177, 0, 18)
  24. title.Font = Enum.Font.SourceSans
  25. title.Text = "LUMBER CAR SOUND SPAMMER!"
  26. title.TextColor3 = Color3.new(0.0745098, 1, 0.0745098)
  27. title.TextSize = 14
  28.  
  29. toggleButton.Name = "toggleButton"
  30. toggleButton.Parent = Frame
  31. toggleButton.BackgroundColor3 = Color3.new(1, 1, 1)
  32. toggleButton.BackgroundTransparency = 1
  33. toggleButton.Position = UDim2.new(0, 0, 0.390598565, 0)
  34. toggleButton.Size = UDim2.new(0, 177, 0, 29)
  35. toggleButton.Font = Enum.Font.SourceSans
  36. toggleButton.Text = "Toggle: OFF"
  37. toggleButton.TextColor3 = Color3.new(1, 0, 0.0156863)
  38. toggleButton.TextSize = 14
  39.  
  40. function SCRIPT_PNEE77_FAKESCRIPT()
  41. local script = Instance.new('LocalScript')
  42. script.Parent = toggleButton
  43. local SpammerStatus = false
  44.  
  45. script.Parent.MouseButton1Click:Connect(function()
  46. if SpammerStatus == false then
  47. SpammerStatus = true
  48. script.Parent.Text = "Toggle: ON"
  49. script.Parent.TextColor3 = Color3.fromRGB(38, 255, 0)
  50. --
  51.  
  52. while SpammerStatus == true do
  53. local playerModel = game.Workspace.PlayerModels:GetChildren()
  54.  
  55. for i,v in pairs(playerModel)do
  56. if v:FindFirstChild("RunSounds") then
  57.  
  58. local RunSounds = v.RunSounds
  59. print("Got Run Sounds")
  60.  
  61. v.RunSounds:FireServer("Set Pitch", 0)
  62. print("Set New Pitch")
  63.  
  64. RunSounds:FireServer("Startup")
  65. print("Run Sounds Started lol")
  66. end
  67. end
  68. wait()
  69. end
  70.  
  71. --
  72. else
  73. SpammerStatus = false
  74. script.Parent.Text = "Toggle: OFF"
  75. script.Parent.TextColor3 = Color3.fromRGB(255, 0, 4)
  76. end
  77. end)
  78.  
  79. end
  80. coroutine.resume(coroutine.create(SCRIPT_PNEE77_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement