local shikaiNames = { ["What’s Even Real?"] = "Confusion", ["Rageful Leap"] = "Berserk", ["Cascade Ripple"] = "Water", ["Surasshu"] = "Creation", ["Bararaq"] = "Lightning", ["Hemorrhage"] = "Blood", ["Carving"] = "Ice", ["Wavefront"] = "Ink", ["Kaen"] = "Fire", ["Shadow Snake"] = "Shadow", ["Wind Crown"] = "Wind" } local buttonText = game:GetService("Players").LocalPlayer.PlayerGui.ShikaiBankai.Z.TextButton.Text local shikai = shikaiNames[buttonText] if shikai then print("You have " .. shikai .. " Shikai, Z skill: " .. buttonText) else print("No match found for " .. buttonText) end