The chance system I’ve created is working but not as I have intended for it. It’s is only showing the first values such as Rīdoraito, Makejidamashī, Yasei but not the other values that are after that. I’ve put an OR statement in it so it should be working?
**local clicked = 0
script.Parent.MouseButton1Click:Connect(function()
clicked = clicked + 1
print(clicked)
local random = math.random(1,1000)
if random <= 1 then
script.Parent.Parent.TextLabel.Text = "Mugen"
print("Heavenly")
elseif random <= 5 then
script.Parent.Parent.TextLabel.Text = "Makejidamashī" or script.Parent.Parent.TextLabel.Text == "Hasha"
print("Supreme")
elseif random <= 50 then
script.Parent.Parent.TextLabel.Text = "Rīdoraito" or script.Parent.Parent.TextLabel.Text == "Shihai" or script.Parent.Parent.TextLabel.Text == "Ten" or script.Parent.Parent.TextLabel.Text == "Seifuku-sha"
print("Blessed")
elseif random <= 250 then
script.Parent.Parent.TextLabel.Text = "kingu" or script.Parent.Parent.TextLabel.Text == "Meishu" or script.Parent.Parent.TextLabel.Text == "Rūrā" or script.Parent.Parent.TextLabel.Text == "Bushō"
print("Legendary")
elseif random <= 500 then
script.Parent.Parent.TextLabel.Text = "Yasei" or script.Parent.Parent.TextLabel.Text == "Damasu" or script.Parent.Parent.TextLabel.Text == "Yūkan" or script.Parent.Parent.TextLabel.Text == "Gādo"
print("Unique")
elseif random <= 1000 then
script.Parent.Parent.TextLabel.Text = "Osoroshī" or script.Parent.Parent.TextLabel.Text == "Seijō" or script.Parent.Parent.TextLabel.Text == "Ikari"
print("Common")
end
end)
**