Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local mouse = player:GetMouse()
- local context = game:GetService("ContextActionService")
- local sound = false
- player.CharacterAdded:connect(function()
- Speed()
- end)
- local s = Instance.new("ScreenGui", game.CoreGui)
- s.Name = "Music"
- local b = Instance.new("TextBox", s)
- b.Size = UDim2.new(0.07, 0, 0.03, 0)
- b.Position = UDim2.new(0.905, 0, 0.96, 0)
- b.BackgroundColor3 = Color3.new(0, 0, 0)
- b.BackgroundTransparency = 0.5
- b.Text = "Bypass Here"
- b.TextColor3 = Color3.new(1, 1, 1)
- b.Font = "Code"
- b.FontSize = "Size14"
- b.BorderSizePixel = 0
- --b.ClearTextOnFocus = false
- local t = Instance.new("TextButton", s)
- t.Size = UDim2.new(0.02, 0, 0.03, 0)
- t.Position = UDim2.new(0.975, 0, 0.96, 0)
- t.BackgroundColor3 = Color3.new(0, 0, 0)
- t.BackgroundTransparency = 0.5
- t.Text = "Play"
- t.TextColor3 = Color3.new(1, 1, 1)
- t.Font = "Code"
- t.FontSize = "Size14"
- t.BorderSizePixel = 0
- t.MouseButton1Click:connect(function()
- if player.Character:FindFirstChild("BoomBox") ~= nil then
- player.Character["BoomBox"].Remote:FireServer("PlaySong", b.Text)
- else
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement