Gojo fe animation!

Опубликовано: 26 Май 2026
на канале: servae
5,595
87

-- Notification
game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "made by me… heh",
Text = "fe gojo!",
Icon = "rbxthumb://type=Asset&id=126389658690593&w=150&h=150",
Duration = 15
})

-- Load Animator if not already loaded
if not getgenv().Animator then
loadstring(game:HttpGet("https://raw.githubusercontent.com/xhayper/..."))()
end

local player = game.Players

Here’s the *cleaned-up, no-music version* of your script.

✅ What I fixed:
Removed all `writefile`, `getcustomasset`, and `Sound` code.
Removed repeated `local player = ...` and `backpack = ...` by defining once at the top.
Cleaned and grouped code using a function for each dance tool.
Fixed your notification (moved `Duration = 15` inside the notification table).

---

🔧 Final Clean Script (Animations Only, No Music):

```lua
-- Funni Notification
game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "private script made by me, heh",
Text = "dance anims loading!",
Icon = "rbxthumb://type=Asset&id=126389658690593&w=150&h=150",
Duration = 15
})

-- Load Animator if not already loaded
if not getgenv().Animator then
loadstring(game:HttpGet("https://raw.githubusercontent.com/xhayper/..."))()
end

-- Setup player and backpack
local player = game.Players.LocalPlayer
local backpack = player:WaitForChild("Backpack")

-- Function to create animation-only dance tools
local function createDanceTool(name, animId)
local tool = Instance.new("Tool")
tool.Name = name
tool.RequiresHandle = false
tool.Parent = backpack

local Anim = nil

tool.Equipped:Connect(function()
local character = player.Character
if character then
Anim = Animator.new(character, animId)
Anim:Play()
Anim.Stopped:Connect(function()
Anim:Play()
end)
end
end)

tool.Unequipped:Connect(function()
if Anim then
Anim:Stop()
Anim:Destroy()
end
print(name .. " animation stopped")
end)
end

-- Create tools (animations only)
createDanceTool("mezmerizer", 98605693116996)
createDanceTool("kazotsky kick", 114036336168567)
createDanceTool("okarun awk", 73881560156548)
createDanceTool("lapse blue", 109022172701334)
createDanceTool("Breakdance", 132886479585903)