Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local boombox = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local TextLabel_2 = Instance.new("TextLabel")
- local Loudness = Instance.new("TextBox")
- local SongId = Instance.new("TextBox")
- local Destroy = Instance.new("TextButton")
- boombox.Name = "boombox"
- boombox.Parent = game:GetService('CoreGui')
- Frame.Parent = boombox
- Frame.Active = true
- Frame.Draggable = true
- Frame.BackgroundColor3 = Color3.new(1, 1, 1)
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0.204987794, 0, 0.572298348, 0)
- Frame.Size = UDim2.new(0.213138685, 0, 0.244596645, 0)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(0.56, 0, 1)
- TextLabel.BorderSizePixel = 0
- TextLabel.Position = UDim2.new(0.0228310507, 0, 0.192902997, 0)
- TextLabel.Size = UDim2.new(0.951483667, 0, 0.012493954, 0)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = ""
- TextLabel.TextColor3 = Color3.new(0, 0, 0)
- TextLabel.TextSize = 14
- TextLabel_2.Parent = Frame
- TextLabel_2.BackgroundColor3 = Color3.new(0.0745098, 0.705882, 1)
- TextLabel_2.BackgroundTransparency = 1
- TextLabel_2.BorderSizePixel = 0
- TextLabel_2.Position = UDim2.new(0.0199771691, 0, 0.0486144871, 0)
- TextLabel_2.Size = UDim2.new(0.951483667, 0, 0.106951833, 0)
- TextLabel_2.Font = Enum.Font.SourceSans
- TextLabel_2.Text = " Radio fucker by Cliqqaphonk#7149"
- TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
- TextLabel_2.TextSize = 18
- TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
- Loudness.Name = "Loudness"
- Loudness.Parent = Frame
- Loudness.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
- Loudness.BorderSizePixel = 0
- Loudness.Position = UDim2.new(0.0228310507, 0, 0.264463454, 0)
- Loudness.Size = UDim2.new(0, 277, 0, 34)
- Loudness.Font = Enum.Font.SourceSans
- Loudness.PlaceholderText = "radio number (1-150)"
- Loudness.Text = ""
- Loudness.TextColor3 = Color3.new(1, 1, 1)
- Loudness.TextSize = 14
- SongId.Name = "SongId"
- SongId.Parent = Frame
- SongId.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
- SongId.BorderSizePixel = 0
- SongId.Position = UDim2.new(0.0199771691, 0, 0.513374507, 0)
- SongId.Size = UDim2.new(0, 277, 0, 34)
- SongId.Font = Enum.Font.SourceSans
- SongId.PlaceholderText = "audio id"
- SongId.Text = ""
- SongId.TextColor3 = Color3.new(1, 1, 1)
- SongId.TextSize = 14
- Destroy.Name = "Destroy"
- Destroy.Parent = Frame
- Destroy.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
- Destroy.BorderSizePixel = 0
- Destroy.Position = UDim2.new(0.131278545, 0, 0.777846932, 0)
- Destroy.Size = UDim2.new(0, 214, 0, 26)
- Destroy.Font = Enum.Font.GothamSemibold
- Destroy.Text = "Dupe"
- Destroy.TextColor3 = Color3.new(1, 1, 1)
- Destroy.TextSize = 14
- Destroy.MouseButton1Click:Connect(function()
- local toolamount = tonumber(Loudness.Text)
- if toolamount > 150 then return end
- local LocalPlayer = game:GetService("Players").LocalPlayer
- local runservice = game:GetService("RunService")
- LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
- local currentamount = #LocalPlayer.Backpack:GetChildren()
- LocalPlayer.Character.Archivable = true
- local tempchar = LocalPlayer.Character:Clone()
- local lastchar = nil
- tempchar.Parent = workspace
- local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
- local renderstepped = runservice.RenderStepped:Connect(function()
- workspace.CurrentCamera.CameraSubject = tempchar:FindFirstChild("Humanoid")
- for _, tool in pairs(LocalPlayer.Backpack:GetChildren()) do
- if tool:IsA("Tool") then
- tool.Parent = LocalPlayer
- end
- end
- LocalPlayer.Character:ClearAllChildren()
- local char = Instance.new("Model", workspace)
- Instance.new("Humanoid", char)
- LocalPlayer.Character = char
- if lastchar ~= nil then
- lastchar:Destroy()
- end
- repeat runservice.RenderStepped:Wait() until LocalPlayer.Character ~= nil
- lastchar = char
- end)
- repeat runservice.RenderStepped:Wait() until #LocalPlayer:GetChildren() - 3 - currentamount >= toolamount
- renderstepped:Disconnect()
- repeat runservice.RenderStepped:Wait() until LocalPlayer.Character:FindFirstChild("HumanoidRootPart") ~= nil
- lastchar:Destroy()
- for _, tool in pairs(LocalPlayer:GetChildren()) do
- if tool:IsA("Tool") then
- tool.Parent = LocalPlayer.Backpack
- end
- end
- LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
- tempchar:Destroy()
- for i,v in pairs(LocalPlayer.Backpack:GetChildren()) do
- if v:IsA('Tool') and string.find(string.lower(v.Name),'boomb') then
- v.Parent = LocalPlayer.Character
- end
- end
- wait(.15)
- for i,v in pairs(LocalPlayer.Character:GetChildren()) do
- if v:IsA('Tool') and string.find(string.lower(v.Name),'boomb') then
- v.Remote:FireServer('PlaySong',tonumber(SongId.Text))
- end
- end
- end)
Add Comment
Please, Sign In to add comment