zachhy

radio fucker lolo

Mar 25th, 2020
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.72 KB | None | 0 0
  1. local boombox = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local TextLabel = Instance.new("TextLabel")
  4. local TextLabel_2 = Instance.new("TextLabel")
  5. local Loudness = Instance.new("TextBox")
  6. local SongId = Instance.new("TextBox")
  7. local Destroy = Instance.new("TextButton")
  8. boombox.Name = "boombox"
  9. boombox.Parent = game:GetService('CoreGui')
  10. Frame.Parent = boombox
  11. Frame.Active = true
  12. Frame.Draggable = true
  13. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  14. Frame.BorderSizePixel = 0
  15. Frame.Position = UDim2.new(0.204987794, 0, 0.572298348, 0)
  16. Frame.Size = UDim2.new(0.213138685, 0, 0.244596645, 0)
  17. TextLabel.Parent = Frame
  18. TextLabel.BackgroundColor3 = Color3.new(0.56, 0, 1)
  19. TextLabel.BorderSizePixel = 0
  20. TextLabel.Position = UDim2.new(0.0228310507, 0, 0.192902997, 0)
  21. TextLabel.Size = UDim2.new(0.951483667, 0, 0.012493954, 0)
  22. TextLabel.Font = Enum.Font.SourceSans
  23. TextLabel.Text = ""
  24. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  25. TextLabel.TextSize = 14
  26. TextLabel_2.Parent = Frame
  27. TextLabel_2.BackgroundColor3 = Color3.new(0.0745098, 0.705882, 1)
  28. TextLabel_2.BackgroundTransparency = 1
  29. TextLabel_2.BorderSizePixel = 0
  30. TextLabel_2.Position = UDim2.new(0.0199771691, 0, 0.0486144871, 0)
  31. TextLabel_2.Size = UDim2.new(0.951483667, 0, 0.106951833, 0)
  32. TextLabel_2.Font = Enum.Font.SourceSans
  33. TextLabel_2.Text = " Radio fucker by Cliqqaphonk#7149"
  34. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  35. TextLabel_2.TextSize = 18
  36. TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
  37. Loudness.Name = "Loudness"
  38. Loudness.Parent = Frame
  39. Loudness.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  40. Loudness.BorderSizePixel = 0
  41. Loudness.Position = UDim2.new(0.0228310507, 0, 0.264463454, 0)
  42. Loudness.Size = UDim2.new(0, 277, 0, 34)
  43. Loudness.Font = Enum.Font.SourceSans
  44. Loudness.PlaceholderText = "radio number (1-150)"
  45. Loudness.Text = ""
  46. Loudness.TextColor3 = Color3.new(1, 1, 1)
  47. Loudness.TextSize = 14
  48. SongId.Name = "SongId"
  49. SongId.Parent = Frame
  50. SongId.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  51. SongId.BorderSizePixel = 0
  52. SongId.Position = UDim2.new(0.0199771691, 0, 0.513374507, 0)
  53. SongId.Size = UDim2.new(0, 277, 0, 34)
  54. SongId.Font = Enum.Font.SourceSans
  55. SongId.PlaceholderText = "audio id"
  56. SongId.Text = ""
  57. SongId.TextColor3 = Color3.new(1, 1, 1)
  58. SongId.TextSize = 14
  59. Destroy.Name = "Destroy"
  60. Destroy.Parent = Frame
  61. Destroy.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  62. Destroy.BorderSizePixel = 0
  63. Destroy.Position = UDim2.new(0.131278545, 0, 0.777846932, 0)
  64. Destroy.Size = UDim2.new(0, 214, 0, 26)
  65. Destroy.Font = Enum.Font.GothamSemibold
  66. Destroy.Text = "Dupe"
  67. Destroy.TextColor3 = Color3.new(1, 1, 1)
  68. Destroy.TextSize = 14
  69.  
  70. Destroy.MouseButton1Click:Connect(function()
  71. local toolamount = tonumber(Loudness.Text)
  72. if toolamount > 150 then return end
  73. local LocalPlayer = game:GetService("Players").LocalPlayer
  74. local runservice = game:GetService("RunService")
  75. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  76. local currentamount = #LocalPlayer.Backpack:GetChildren()
  77. LocalPlayer.Character.Archivable = true
  78. local tempchar = LocalPlayer.Character:Clone()
  79. local lastchar = nil
  80. tempchar.Parent = workspace
  81. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  82. local renderstepped = runservice.RenderStepped:Connect(function()
  83. workspace.CurrentCamera.CameraSubject = tempchar:FindFirstChild("Humanoid")
  84. for _, tool in pairs(LocalPlayer.Backpack:GetChildren()) do
  85. if tool:IsA("Tool") then
  86. tool.Parent = LocalPlayer
  87. end
  88. end
  89. LocalPlayer.Character:ClearAllChildren()
  90. local char = Instance.new("Model", workspace)
  91. Instance.new("Humanoid", char)
  92. LocalPlayer.Character = char
  93. if lastchar ~= nil then
  94. lastchar:Destroy()
  95. end
  96. repeat runservice.RenderStepped:Wait() until LocalPlayer.Character ~= nil
  97. lastchar = char
  98. end)
  99. repeat runservice.RenderStepped:Wait() until #LocalPlayer:GetChildren() - 3 - currentamount >= toolamount
  100. renderstepped:Disconnect()
  101. repeat runservice.RenderStepped:Wait() until LocalPlayer.Character:FindFirstChild("HumanoidRootPart") ~= nil
  102. lastchar:Destroy()
  103. for _, tool in pairs(LocalPlayer:GetChildren()) do
  104. if tool:IsA("Tool") then
  105. tool.Parent = LocalPlayer.Backpack
  106. end
  107. end
  108. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  109. tempchar:Destroy()
  110.  
  111. for i,v in pairs(LocalPlayer.Backpack:GetChildren()) do
  112. if v:IsA('Tool') and string.find(string.lower(v.Name),'boomb') then
  113. v.Parent = LocalPlayer.Character
  114. end
  115. end
  116. wait(.15)
  117. for i,v in pairs(LocalPlayer.Character:GetChildren()) do
  118. if v:IsA('Tool') and string.find(string.lower(v.Name),'boomb') then
  119. v.Remote:FireServer('PlaySong',tonumber(SongId.Text))
  120. end
  121. end
  122. end)
Add Comment
Please, Sign In to add comment