hello there guys!
I have an error that just appeard
first animation dont want to show on all body next issue was not error that the gui show only for one person but its repaired with Chat GPT but animation still dont want to show on all body and AI just messed code up so please help?
here is code from tool (pssst do not ask for what is it):
– Pobierz model gracza
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local tool = script.Parent
local hum = player.Character:FindFirstChildOfClass(“Humanoid”)
– Pobierz animację
local animation = script.Parent.Animation
– Odtwórz animację na graczu
local animationTrack = character:FindFirstChild(“AnimationTrack”)
if not animationTrack then
animationTrack = character.Humanoid:LoadAnimation(animation)
animationTrack.WeightCurrent = 1 – Ustawienie właściwości WeightCurrent na 1, aby animacja była odtwarzana na całym ciele
end
– Zdalne zdarzenia na serwerze
local remoteEvent1 = game.ReplicatedStorage.re1 – ZAMIEŃ NA NAZWĘ PIERWSZEGO ZDARZENIA
local remoteEvent2 = game.ReplicatedStorage.re2 – ZAMIEŃ NA NAZWĘ DRUGIEGO ZDARZENIA
tool.Activated:Connect(function()
local random = math.random(1, 2)
if random == 1 then
animationTrack:Play()
remoteEvent1:FireServer() – Wysyła zdarzenie 1 na serwer
elseif random == 2 then
animationTrack:Play()
remoteEvent2:FireServer()
if hum then
hum.Health = 0
wait(2)
player:Kick(“You Died. To Play Again Just Join. Bullets are waiting”)
end
end
end)
And There some code from serverscriptservice:
local anywhere = game.ReplicatedStorage
local r1 = anywhere.re1 – ZAMIEŃ NA NAZWĘ PIERWSZEGO ZDARZENIA
local r2 = anywhere.re2 – ZAMIEŃ NA NAZWĘ DRUGIEGO ZDARZENIA
– Funkcja obsługująca zdarzenie 1 na serwerze
r1.OnServerEvent:Connect(function(player)
player.PlayerGui.ScreenGui.TextLabel.Visible = true
wait(2)
player.PlayerGui.ScreenGui.TextLabel.Visible = false
end)
– Funkcja obsługująca zdarzenie 2 na serwerze
r2.OnServerEvent:Connect(function(player)
player.PlayerGui.ScreenGui.Frame.Visible = true
wait(3)
player.PlayerGui.ScreenGui.Frame.Visible = false
end)
so if you can programing well yi=ou can help me? AI messed this up and its not even starting