Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
- local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
- local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
- local Window = Fluent:CreateWindow({
- Title = "Version: " .. Fluent.Version,
- SubTitle = "COMPL3X is my competiter, tryna beat him rn",
- TabWidth = 160,
- Size = UDim2.fromOffset(580, 460),
- Acrylic = true, -- The blur may be detectable, setting this to false disables blur entirely
- Theme = "Dark",
- MinimizeKey = Enum.KeyCode.LeftControl -- Used when theres no MinimizeKeybind
- })
- Fluent:Notify({
- Title = "!!BY THIEF!!",
- Content = "!!BY THIEF!!",
- SubContent = "ENJOY, AS THIS SCRIPT IS MADE BY THIEF ", -- Optional
- Duration = 5 -- Set to nil to make the notification not disappear
- })
- -- Fluent provides Lucide Icons, they are optional
- local Tabs = {
- Main = Window:AddTab({ Title = "Custom Movesets", Icon = "171009648" }),
- Settings = Window:AddTab({ Title = "Settings", Icon = "settings" })
- }
- Tab:AddButton({
- Title = "Play Animation",
- Description = "Enables An Animation",
- Callback = function()
- print("local animationId = 12983333733
- local Players = game:GetService("Players")
- local player = Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoid = character:WaitForChild("Humanoid")
- local animation = Instance.new("Animation")
- animation.AnimationId = "rbxassetid://" .. animationId
- local animator = humanoid:FindFirstChildOfClass("Animator") or Instance.new("Animator", humanoid)
- local animationTrack = animator:LoadAnimation(animation)
- local function playAnimation()
- if not animationTrack.IsPlaying then
- animationTrack:Play()
- end
- end
- playAnimation()")
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment