#i have emotes in my game and for some reason only I CAN SEE THEM, no one else can see me emote

1 messages · Page 1 of 1 (latest)

tidal mesa
#

.

#

maybe someone encountered this issue b4

#

so i need help

iron kite
#

show code

#

or I’ll eat ur cat

#

@tidal mesa

tidal mesa
# iron kite show code

1 handler:
2 LocalEventsScript :

local PlayerService = game:GetService("Players")
local ServerStorage = game:GetService("ServerStorage")
local ReplicatedStorage = game:GetService("ReplicatedStorage")

local RemoteEvents = ReplicatedStorage:WaitForChild("RemoteEvents")
local LocalEvents = RemoteEvents:WaitForChild("LocalEvents")

local player = PlayerService.LocalPlayer

function cloneSound(sound)
local cloneS = sound:Clone()
cloneS.Parent = script
cloneS:Play()
cloneS.Ended:Connect(function()
cloneS:Destroy()
end)
end

LocalEvents.LocalPart.OnClientEvent:Connect(function(minigame, part)

if minigame == "Save The Builder!" then
    if part:IsA("BasePart") and not part:FindFirstChild(player.Name) then
        local bloqueo = Instance.new("ObjectValue", part)
        bloqueo.Name = player.Name

        part.CanCollide = true
        part.Transparency = 0
        cloneSound(script.LocalPartSound)

        local mouseClick = part:FindFirstChildOfClass("ClickDetector")
        if mouseClick then
            mouseClick:Destroy()
        end
    end
    
elseif minigame == "Strange Forest" then
    part.CanCollide = false
    part.Transparency = 1
end

end)

#

the .txt is the handler

#

idk whats wrong w it

#

@iron kite

iron kite
#

im trying to read it but its so long

#

how do you know only you can see them did you test it

#

maybe theres a huge memory leak or smth

tidal mesa
#

not a single one

#

can see

harsh linden
#

Are you sure ur playing the anims on the server?

gray surge
#

no need to play animations on the server

harsh linden
gray surge
gray surge
# harsh linden But only players', no?

client → client replication doesn't exist otherwise you computer could get invaded by an exploiter lol. the way animations played from the client replicate is client → server → all clients

harsh linden
#

And everything will see it right ?

gray surge
#

on your own character, yes. because you have the network ownership of your own character

harsh linden
gray surge
#

and the post suggests playing animations on their own character, therefore there's no need to play the animation from the server

harsh linden
gray surge
#

it looks like AI-generated code like 80%

shy crystalBOT
#

studio** You are now Level 13! **studio

tidal mesa
#

and the scripter works with ai or smth

#

most of the stuff he makes works well

#

but this just doesnt work at all