Advertisement
ou1z

Untitled

Jun 3rd, 2020
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.47 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local Change = Instance.new("TextButton")
  4. local image = Instance.new("ImageLabel")
  5. local Audio = Instance.new("TextBox")
  6. local TextLabel = Instance.new("TextLabel")
  7. local plr = game.Players.LocalPlayer
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.AnchorPoint = Vector2.new(0.5, 0.5)
  15. Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  16. Frame.BorderColor3 = Color3.fromRGB(40, 40, 40)
  17. Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
  18. Frame.Size = UDim2.new(0.347970486, 0, 0.348675907, 0)
  19.  
  20. Change.Name = "Change"
  21. Change.Parent = Frame
  22. Change.AnchorPoint = Vector2.new(0.5, 0.5)
  23. Change.BackgroundColor3 = Color3.fromRGB(0, 0, 202)
  24. Change.BackgroundTransparency = 1.000
  25. Change.BorderSizePixel = 0
  26. Change.Position = UDim2.new(0.5, 0, 0.774999976, 0)
  27. Change.Size = UDim2.new(0.424177974, 0, 0.190415934, 0)
  28. Change.ZIndex = 2
  29. Change.Font = Enum.Font.SourceSansLight
  30. Change.Text = "Change"
  31. Change.TextColor3 = Color3.fromRGB(255, 255, 255)
  32. Change.TextScaled = true
  33. Change.TextSize = 14.000
  34. Change.TextWrapped = true
  35.  
  36. image.Name = "image"
  37. image.Parent = Change
  38. image.Active = true
  39. image.AnchorPoint = Vector2.new(0.5, 0.5)
  40. image.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  41. image.BackgroundTransparency = 1.000
  42. image.Position = UDim2.new(0.5, 0, 0.5, 0)
  43. image.Selectable = true
  44. image.Size = UDim2.new(1, 0, 1, 0)
  45. image.Image = "rbxassetid://3570695787"
  46. image.ImageColor3 = Color3.fromRGB(157, 0, 0)
  47. image.ScaleType = Enum.ScaleType.Slice
  48. image.SliceCenter = Rect.new(100, 100, 100, 100)
  49. image.SliceScale = 0.167
  50.  
  51. Audio.Name = "Audio"
  52. Audio.Parent = Frame
  53. Audio.AnchorPoint = Vector2.new(0.5, 0.5)
  54. Audio.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
  55. Audio.BorderColor3 = Color3.fromRGB(68, 68, 68)
  56. Audio.Position = UDim2.new(0.5, 0, 0.452983737, 0)
  57. Audio.Size = UDim2.new(0, 289, 0, 58)
  58. Audio.Font = Enum.Font.GothamBlack
  59. Audio.PlaceholderText = "Audio Id"
  60. Audio.Text = ""
  61. Audio.TextColor3 = Color3.fromRGB(255, 255, 255)
  62. Audio.TextSize = 14.000
  63.  
  64. TextLabel.Parent = Frame
  65. TextLabel.AnchorPoint = Vector2.new(0.5, 0)
  66. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  67. TextLabel.BackgroundTransparency = 1.000
  68. TextLabel.Position = UDim2.new(0.5, 0, 0.028933093, 0)
  69. TextLabel.Size = UDim2.new(1, 0, 0.150000006, 0)
  70. TextLabel.Font = Enum.Font.SourceSansSemibold
  71. TextLabel.Text = "xerful's audio visualizer"
  72. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  73. TextLabel.TextScaled = true
  74. TextLabel.TextSize = 14.000
  75. TextLabel.TextWrapped = true
  76.  
  77.  
  78.  
  79.  
  80.  
  81. local function UPAWZ_fake_script() -- Change.LocalScript
  82.     local script = Instance.new('LocalScript', Change)
  83.  
  84.     local char = game.Players.LocalPlayer.Character
  85.    
  86.    
  87.    
  88.     script.Parent.MouseButton1Up:Connect(function()
  89.        for i,v in pairs(bp:GetChildren()) do
  90.     if v:FindFirstChild("Remote") then
  91.         v.Parent = char
  92.         v.Remote:FireServer("PlaySong", 5059911501)
  93.         v.Server:Destroy()
  94.         v.CanBeDropped = false
  95.         table.insert(mov, v)
  96.     end
  97. end
  98.     end)
  99. end
  100. coroutine.wrap(UPAWZ_fake_script)()
  101. local function VWTO_fake_script() -- Frame.LocalScript
  102.     local script = Instance.new('LocalScript', Frame)
  103.  
  104.     local UIS = game:GetService('UserInputService')
  105.    
  106.     UIS.InputBegan:Connect(function(key, gpe)
  107.         if gpe then return end
  108.        
  109.         if key.KeyCode == Enum.KeyCode.RightControl or key.KeyCode == Enum.KeyCode.RightShift then
  110.             script.Parent.Visible = not script.Parent.Visible
  111.         end
  112.     end)
  113. end
  114. coroutine.wrap(VWTO_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement