ScriptMakerTSB

TSB SCRIPT

Oct 4th, 2024
729
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
  2. local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
  3. local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
  4.  
  5. local Window = Fluent:CreateWindow({
  6. Title = "Version: " .. Fluent.Version,
  7. SubTitle = "COMPL3X is my competiter, tryna beat him rn",
  8. TabWidth = 160,
  9. Size = UDim2.fromOffset(580, 460),
  10. Acrylic = true, -- The blur may be detectable, setting this to false disables blur entirely
  11. Theme = "Dark",
  12. MinimizeKey = Enum.KeyCode.LeftControl -- Used when theres no MinimizeKeybind
  13. })
  14.  
  15.  
  16. Fluent:Notify({
  17. Title = "!!BY THIEF!!",
  18. Content = "!!BY THIEF!!",
  19. SubContent = "ENJOY, AS THIS SCRIPT IS MADE BY THIEF ", -- Optional
  20. Duration = 5 -- Set to nil to make the notification not disappear
  21. })
  22.  
  23. -- Fluent provides Lucide Icons, they are optional
  24. local Tabs = {
  25. Main = Window:AddTab({ Title = "Custom Movesets", Icon = "171009648" }),
  26. Settings = Window:AddTab({ Title = "Settings", Icon = "settings" })
  27. }
  28. Tab:AddButton({
  29. Title = "Play Animation",
  30. Description = "Enables An Animation",
  31. Callback = function()
  32. print("local animationId = 12983333733
  33.  
  34.  
  35. local Players = game:GetService("Players")
  36. local player = Players.LocalPlayer
  37. local character = player.Character or player.CharacterAdded:Wait()
  38. local humanoid = character:WaitForChild("Humanoid")
  39.  
  40. local animation = Instance.new("Animation")
  41. animation.AnimationId = "rbxassetid://" .. animationId
  42.  
  43. local animator = humanoid:FindFirstChildOfClass("Animator") or Instance.new("Animator", humanoid)
  44. local animationTrack = animator:LoadAnimation(animation)
  45.  
  46. local function playAnimation()
  47. if not animationTrack.IsPlaying then
  48. animationTrack:Play()
  49. end
  50. end
  51.  
  52. playAnimation()")
  53. end
  54. })
Advertisement
Add Comment
Please, Sign In to add comment