Advertisement
EXO_DEV

anim

Sep 12th, 2024 (edited)
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. -- bypass from BlastingStone#8878
  2. if game.PlaceId == 5771467270 or game.PlaceId == 8221489139 then
  3. loadstring(game:HttpGet("https://raw.githubusercontent.com/BlastingStone/MyLuaStuff/master/ttd3bypass.lua"))()
  4. task.wait(0/1)
  5. loadstring(game:HttpGet("https://raw.githubusercontent.com/BlastingStone/MyLuaStuff/master/universal_antisteal_bypass.lua"))()
  6. else
  7. loadstring(game:HttpGet("https://raw.githubusercontent.com/BlastingStone/MyLuaStuff/master/universal_antisteal_bypass.lua"))()
  8. end
  9.  
  10. local screenxD = Instance.new("ScreenGui",game.CoreGui)
  11. screenxD.DisplayOrder = 500
  12. screenxD.ResetOnSpawn = false
  13. screenxD.Name = "🗿"
  14. local drag = Instance.new("Frame",screenxD)
  15. drag.BackgroundColor3 = Color3.fromRGB(114,137,218)
  16. drag.BorderSizePixel = 0
  17. drag.Position = UDim2.new(0.107,0,0.216,0)
  18. drag.Size = UDim2.new(0,256,0,20)
  19. local scroll = Instance.new("ScrollingFrame",drag)
  20. scroll.BackgroundColor3 = Color3.fromRGB(44,47,51)
  21. scroll.BorderSizePixel = 0
  22. scroll.Position = UDim2.new(0,0,1,0)
  23. scroll.Size = UDim2.new(1,0,0,319)
  24. scroll.AutomaticCanvasSize = Enum.AutomaticSize.Y
  25. scroll.ScrollBarThickness = 4
  26. local uilist = Instance.new("UIListLayout",scroll)
  27. uilist.Padding = UDim.new(0,1)
  28.  
  29. local UIS = game:GetService("UserInputService")
  30. local function dragify(Frame,boool)
  31. local frametomove = Frame
  32. local dragToggle,dragInput,dragStart,startPos
  33. local dragSpeed = 0
  34. local function updateInput(input)
  35. local Delta = input.Position - dragStart
  36. frametomove.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  37. end
  38. Frame.InputBegan:Connect(function(input)
  39. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and UIS:GetFocusedTextBox() == nil then
  40. dragToggle = true
  41. dragStart = input.Position
  42. startPos = frametomove.Position
  43. input.Changed:Connect(function()
  44. if input.UserInputState == Enum.UserInputState.End then
  45. dragToggle = false
  46. end
  47. end)
  48. end
  49. end)
  50. Frame.InputChanged:Connect(function(input)
  51. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  52. dragInput = input
  53. end
  54. end)
  55. UIS.InputChanged:Connect(function(input)
  56. if input == dragInput and dragToggle then
  57. updateInput(input)
  58. end
  59. end)
  60. end
  61. dragify(drag)
  62.  
  63. local function createbutton(id)
  64. local str = string.match(tostring(id) , "%d+")
  65. local button = Instance.new("TextButton",scroll)
  66. button.BorderSizePixel = 0
  67. button.BackgroundColor3 = Color3.fromRGB(35,39,42)
  68. button.Size = UDim2.new(1,0,0,50)
  69. button.Text = ""
  70. local name = Instance.new("TextLabel",button)
  71. name.BackgroundTransparency = 1
  72. name.Size = UDim2.new(1,0,0.5,0)
  73. name.TextSize = 16
  74. name.Font = Enum.Font.Gotham
  75. name.TextColor3 = Color3.fromRGB(255,255,255)
  76. name.TextXAlignment = Enum.TextXAlignment.Left
  77. local id = name:Clone()
  78. id.Parent = button
  79. id.AnchorPoint = Vector2.new(0,1)
  80. id.Position = UDim2.new(0,0,1,0)
  81. id.Text = str
  82. name.Text = game:GetService("MarketplaceService"):GetProductInfo(tonumber(str)).Name
  83. button.Activated:Connect(function()
  84. setclipboard(str)
  85. end)
  86. end
  87.  
  88. local animationtabl = {}
  89.  
  90. while true do
  91. task.wait()
  92. for _,localPlayer in game.Players:GetPlayers() do
  93. local localPlayer = localPlayer.Character:FindFirstChild("Humanoid")
  94. local a = localPlayer:GetPlayingAnimationTracks()
  95. for i, track in pairs(a) do
  96. task.spawn(function()
  97. local pass = true
  98. for _,v in pairs(animationtabl) do
  99. if v == track.Animation.AnimationId then
  100. pass = false
  101. end
  102. end
  103. if pass then
  104. table.insert(animationtabl,track.Animation.AnimationId)
  105. createbutton(track.Animation.AnimationId)
  106. end
  107. end)
  108. end
  109. task.wait()
  110. end
  111. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement