Advertisement
Xxploitboi

The streets

Apr 24th, 2018
618
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local mouse = player:GetMouse()
  3. local context = game:GetService("ContextActionService")
  4. local sound = false
  5.  
  6. player.CharacterAdded:connect(function()
  7. Speed()
  8. end)
  9.  
  10. local s = Instance.new("ScreenGui", game.CoreGui)
  11. s.Name = "Music"
  12. local b = Instance.new("TextBox", s)
  13. b.Size = UDim2.new(0.07, 0, 0.03, 0)
  14. b.Position = UDim2.new(0.905, 0, 0.96, 0)
  15. b.BackgroundColor3 = Color3.new(0, 0, 0)
  16. b.BackgroundTransparency = 0.5
  17. b.Text = "Bypass Here"
  18. b.TextColor3 = Color3.new(1, 1, 1)
  19. b.Font = "Code"
  20. b.FontSize = "Size14"
  21. b.BorderSizePixel = 0
  22. --b.ClearTextOnFocus = false
  23. local t = Instance.new("TextButton", s)
  24. t.Size = UDim2.new(0.02, 0, 0.03, 0)
  25. t.Position = UDim2.new(0.975, 0, 0.96, 0)
  26. t.BackgroundColor3 = Color3.new(0, 0, 0)
  27. t.BackgroundTransparency = 0.5
  28. t.Text = "Play"
  29. t.TextColor3 = Color3.new(1, 1, 1)
  30. t.Font = "Code"
  31. t.FontSize = "Size14"
  32. t.BorderSizePixel = 0
  33. t.MouseButton1Click:connect(function()
  34. if player.Character:FindFirstChild("BoomBox") ~= nil then
  35. player.Character["BoomBox"].Remote:FireServer("PlaySong", b.Text)
  36. else
  37. end
  38. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement