Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Trying to have it so while compatible with FE, is visible to everyone instead of just myself.Help?

Asked by 6 years ago
------------------------------------------------------------------
AnimatronicPlayer = game.Players.LocalPlayer.Character
Gui = script.Parent
Gui2 = script.Parent.Parent.Parent.Frame:WaitForChild("ImageButton2")
function EyeGlow()
    script.Parent.Sound:Play()
    local anim = AnimatronicPlayer.Humanoid:LoadAnimation(script.Parent.Animation)
    anim:Play()
    AnimatronicPlayer.Headz.SSJ.Transparency = 0
    AnimatronicPlayer.Headz.Goku.Transparency = 1
    AnimatronicPlayer.Chest.Middle.SuperSound.Playing = true
AnimatronicPlayer.Chest.Super1.SSJAURA1.Enabled = true
AnimatronicPlayer.Chest.Super1.SSJLIGHT.Enabled = true
AnimatronicPlayer.Chest.Super2.SSJAURA2.Enabled = true
wait(0.75)
AnimatronicPlayer.Chest.Middle.SSB.Enabled = true
    wait(1.75)
    AnimatronicPlayer.Chest.Middle.SSB.Enabled = false
    AnimatronicPlayer.Headz.Middle.Base.Transparency = 1
    AnimatronicPlayer.Headz.Middle.SSJR.Transparency = 0
    AnimatronicPlayer.Headz.Middle.SSJ.Transparency = 1
AnimatronicPlayer.Headz.Goku.Transparency=1
AnimatronicPlayer.Headz.SSJR.Transparency=0
AnimatronicPlayer.Chest.Super1.SSJAURA1.Enabled = false
AnimatronicPlayer.Chest.Super1.SSJLIGHT.Enabled = false
AnimatronicPlayer.Chest.Super2.SSJAURA2.Enabled = false
AnimatronicPlayer.Headz.SSJ.Transparency=1
AnimatronicPlayer.Headz.SSJ2.Transparency=1
AnimatronicPlayer.Chest.Middle.Electric.Enabled = false
AnimatronicPlayer.Chest.Middle.Super2Sound.Playing = false
AnimatronicPlayer.Chest.Middle.SuperSound.Playing = false
AnimatronicPlayer.Chest.Middle.RoseSound.Playing = true
AnimatronicPlayer.Chest.Rose1.B1.Enabled = true
AnimatronicPlayer.Chest.Rose1.B2.Enabled = true
AnimatronicPlayer.Chest.Rose1.BL.Enabled = true
AnimatronicPlayer.Chest.Rose2.B3.Enabled = true
AnimatronicPlayer.Leg2.Middle.Flare.Enabled = true
AnimatronicPlayer.Leg1.Middle.Flare.Enabled = true
AnimatronicPlayer.Headz.Middle.Flare.Enabled = true
AnimatronicPlayer.Chest.Middle.Flare.Enabled = true
AnimatronicPlayer.Arm2.Middle.Flare.Enabled = true
AnimatronicPlayer.Arm1.Middle.Flare.Enabled = true
AnimatronicPlayer.Chest.Super1.W1.Enabled = false
AnimatronicPlayer.Chest.Super1.W2.Enabled = false




Gui.Visible = false
Gui2.Visible = true
end

script.Parent.MouseButton1Click:connect(EyeGlow)

--------------------------------------------------------------------

I haven't quite figured out how to do it yet, any solutions?

0
remote event to server, let the server send a remote event back User#20388 0 — 6y

Answer this question