Advertisement
squidingtin

Flex Audio Stealer

Dec 18th, 2020 (edited)
883
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.48 KB | None | 0 0
  1. Player = game.Players.LocalPlayer
  2. PlrStats = Player.PlayerGui.PlrStats
  3. Mouse = Player:GetMouse()
  4. R = PlrStats.Frame.RAP
  5. local function OnLeftClick()
  6.     Target = Mouse.Target
  7.     local Root = Target:FindFirstAncestorWhichIsA("Model")
  8.     local Tool = Root:FindFirstChildWhichIsA("Tool")
  9.         if Tool ~= nil then
  10.     Sound = Tool.Handle.Sound.SoundId
  11.         wait(1)
  12.     R.Text = ("Music Id: " .. Sound)
  13.     setclipboard(Sound)
  14.         else
  15.     print(Root.Name)
  16.     end
  17. end
  18.  
  19. Mouse.Button1Down:Connect(OnLeftClick)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement