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

Can someone help me fix this?

Asked by
RAYAN1565 691 Moderation Voter
9 years ago

This is in a GUI. I want this script to take what the player types in the text box and put it at the end of the link "http://www.roblox.com/asset/?id=" and finally paste the link in the SoundId property of the Sound object. I tried the script below. But it doesn't seem to work.

local Button = script.Parent
Frame = script.Parent.Parent.Parent
a = script.Parent.Parent.AudioIDInsert.Text     

function onClick() 
        game.Workspace.RadioModel.Music.Script.Sound.SoundId="http://www.roblox.com/asset/?id=" .. a
        wait(0.1)       
        Frame:Destroy()
end

Button.MouseButton1Click:connect(onClick)
1
If you need some more information. Please request. I even have my place un copy locked so you can see whats going on. RAYAN1565 691 — 9y

1 answer

Log in to vote
2
Answered by 9 years ago
local Button = script.Parent
Frame = script.Parent.Parent.Parent   
function onClick()
    a = script.Parent.Parent.AudioIDInsert.Text  
        game.Workspace.RadioModel.Music.Script.Sound.SoundId="http://www.roblox.com/asset/?id=" .. a
        wait(0.1)      
        Frame:Destroy()
end
Button.MouseButton1Click:connect(onClick)

Its simple, because when the script runs the a value was outside the function so when the script runs it automatically saves what the value is and doesnt update when you use the function, if it is inside then it updates.

Ad

Answer this question