Silenz1o

Script

May 10th, 2026 (edited)
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local playerGui = player:WaitForChild("PlayerGui")
  3.  
  4. -- Mapping deteksi: Nama Asli -> Nama Baru
  5. local ultMap = {
  6. ["Omni Directional Punch"] = "Domain Expansion",
  7. ["Table Flip"] = "Open Domain (buggy)",
  8. ["Serious Punch"] = "Fuga",
  9. ["Death Counter"] = "'Death'"
  10. }
  11.  
  12. local function checkAndRenameUlt()
  13. pcall(function()
  14. local hotbar = playerGui.Hotbar.Backpack.Hotbar
  15. for _, slot in pairs(hotbar:GetChildren()) do
  16. local toolNameLabel = slot:FindFirstChild("Base") and slot.Base:FindFirstChild("ToolName")
  17. if toolNameLabel then
  18. -- Cek apakah tool yang terdeteksi ada di list Ultimate
  19. local newName = ultMap[toolNameLabel.Text]
  20. if newName then
  21. toolNameLabel.Text = newName
  22. end
  23. end
  24. end
  25.  
  26. -- Bonus: Ganti label teks Ultimate
  27. local magicLabel = playerGui.ScreenGui:FindFirstChild("MagicHealth")
  28. if magicLabel then magicLabel.TextLabel.Text = "King of curses" end
  29. end)
  30. end
  31.  
  32. -- Sistem Deteksi Otomatis (Setiap ada perubahan UI / Awakening)
  33. playerGui.DescendantAdded:Connect(function()
  34. task.wait(0.1)
  35. checkAndRenameUlt()
  36. end)
  37.  
  38. -- Jalankan sekali saat script start
  39. checkAndRenameUlt()
  40.  
  41. -- Sistem Table Flip Melayang (20 Studs / 10 Detik)
  42. player.CharacterAdded:Connect(function(char)
  43. local hum = char:WaitForChild("Humanoid")
  44. hum.AnimationPlayed:Connect(function(track)
  45. if track.Animation.AnimationId == "rbxassetid://11365563255" then
  46. track:Stop()
  47. local hrp = char:WaitForChild("HumanoidRootPart")
  48. local bp = Instance.new("BodyPosition", hrp)
  49. bp.MaxForce = Vector3.new(0, math.huge, 0)
  50. bp.Position = hrp.Position + Vector3.new(0, 20, 0)
  51. task.delay(10, function() bp:Destroy() end)
  52.  
  53. local new = hum:LoadAnimation(Instance.new("Animation", {AnimationId = "rbxassetid://18459220516"}))
  54. new:Play(); new.TimePosition = 1.8
  55. end
  56. end)
  57. end)
  58.  
Advertisement
Add Comment
Please, Sign In to add comment