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

Need help scriptign a face changer gui could anyone help?

Asked by 4 years ago

I need helping scripting a face changer gui, how do I use the removevent functions and what would I put in it?

This is what I have so far,

`wait()
local player = game.Players.LocalPlayer
local button = script.Parent
local title = button:WaitForChild("Title")
local facename = button:WaitForChild("FaceName")
local imageid = button:WaitForChild("ImageID")

title.Text = facename.Value
button.Image = "rbxassetid://" ..imageid.Value

button.MouseButton1Click:connect(function()
    local char = player.Character
    local face = char:WaitForChild("Head").face
    face.Texture = "rbxassetid://" ..imageid.Value
end)`

for my facechangergui. I have value id's and ect. setup. How would I rework it so the events can work?

0
Try http://www.roblox.com/asset/?id= Instead of rbxassetid:// SmartNode 383 — 4y

Answer this question