केवल खिलाड़ी 2 के लिए पाठ बदलता है और खिलाड़ी 1 नहीं

Aug 18 2020

इसलिए मैंने इस स्क्रिप्ट को टाइप किया (यह एक सामान्य स्क्रिप्ट है) पाठ को बदलने के लिए जब 2 खिलाड़ी खेल में होते हैं, लेकिन समस्या तब होती है जब खिलाड़ी 2 किसी भी समय खेल में शामिल हो जाता है जब पाठ केवल खिलाड़ी 2 में बदल जाता है और खिलाड़ी 1 के लिए कुछ भी नहीं होता है (मैंने डाला) टेक्स्टलेबेल में स्क्रिप्ट जहां टेक्स्टलेबेल बदल जाएगी) और जब खिलाड़ी 1 खेल छोड़ता है तो टेक्स्ट नहीं बदलता है। यहां कोई स्क्रिप्ट नहीं है:

if #game:GetService("Players"):GetPlayers() >= 2 then
script.Parent.Text ="Intermission: 25"
wait(1)
script.Parent.Text ="Intermission: 24"
wait(1)
script.Parent.Text ="Intermission: 23"
wait(1)
script.Parent.Text ="Intermission: 22"
wait(1)
script.Parent.Text ="Intermission: 21"
wait(1)
script.Parent.Text ="Intermission: 20"
wait(1)
script.Parent.Text ="Intermission: 19"
wait(1)
script.Parent.Text ="Intermission: 18"
wait(1)
script.Parent.Text ="Intermission: 17"
wait(1)
script.Parent.Text ="Intermission: 16"
wait(1)
script.Parent.Text ="Intermission: 15"
wait(1)
script.Parent.Text ="Intermission: 14"
wait(1)
script.Parent.Text ="Intermission: 13"
wait(1)
script.Parent.Text ="Intermission: 12"
wait(1)
script.Parent.Text ="Intermission: 11"
wait(1)
script.Parent.Text ="Intermission: 10"
wait(1)
script.Parent.Text ="Intermission: 9"
wait(1)
script.Parent.Text ="Intermission: 8"
wait(1)
script.Parent.Text ="Intermission: 7"
wait(1)
script.Parent.Text ="Intermission: 6"
wait(1)
script.Parent.Text ="Intermission: 5"
wait(1)
script.Parent.Text ="Intermission: 4"
wait(1)
script.Parent.Text ="Intermission: 3"
wait(1)
script.Parent.Text ="Intermission: 2"
wait(1)
script.Parent.Text ="Intermission: 1"
wait(1)
script.Parent.Text ="Intermission: 0"
else
script.Parent.Text ="Waiting for Players"
end

जवाब

EliaGames Aug 29 2020 at 07:37

इस त्रुटि को ठीक करना चाहिए

local countdown = 25
local players = 0

game:GetService("Players").PlayerAdded:Connect(function()
    players = players + 1
end)

game:GetService("Players").PlayerRemoving:Connect(function()
    players = players - 1
end)

while wait(1) do
    if players > 1 then
        script.Parent.Text = "Intermission: ".. countdown
        print("Intermission: ".. countdown)
        countdown = countdown - 1
        if countdown <= 0 then
            script.Parent.Visible = false
            countdown = 25
        end
    end
    
    if players < 2 then
        script.Parent.Text = "Intermission: ".. countdown
        print("Intermission: ".. countdown)
        countdown = 25
    end
end