LaakariJoin Date: 2014-08-07 Post Count: 17362 |
script.Parent.Touched:connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") then
local plr = game.Players:GetPlayerFromCharacter(hit.Parent)
if plr.PlayerGui:FindFirstChild("ClubMusic") then
plr.PlayerGui.ClubMusic:Stop()
plr.PlayerGui.ClubMusic:Destroy()
end
end
end)
|
|
LaakariJoin Date: 2014-08-07 Post Count: 17362 |
Yo
|
|
cxcharlieJoin Date: 2009-08-26 Post Count: 1414 |
I think GetPlayer from character is deprecated
http://www.roblox.com/a-item?id=212802893local D = Instance.new('RocketPropulsion',me) D.Target = OP D:Fire() |
|
cxcharlieJoin Date: 2009-08-26 Post Count: 1414 |
I think get playerfromcharacter is deprecated
http://www.roblox.com/a-item?id=212802893local D = Instance.new('RocketPropulsion',me) D.Target = OP D:Fire() |
|
|
the playergui isn't loaded by the server, so scripts can't look in it |
|
LaakariJoin Date: 2014-08-07 Post Count: 17362 |
Don't believe so
|
|
ZawieJoin Date: 2010-07-04 Post Count: 6338 |
uhm output?
are you use you capitalized things correctly and what not? |
|
cxcharlieJoin Date: 2009-08-26 Post Count: 1414 |
oh wait nvm
erm
try using a print to see if it can get passed the if statements
http://www.roblox.com/a-item?id=212802893local D = Instance.new('RocketPropulsion',me) D.Target = OP D:Fire() |
|
LaakariJoin Date: 2014-08-07 Post Count: 17362 |
What @ Swag ?
@ Everyone else
script.Parent.Touched:connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") then
local plr = game.Players:GetPlayerFromCharacter(hit.Parent)
if plr.PlayerGui:FindFirstChild("ClubMusic") == nil then
local music = game.Workspace.DJTable.Songs.ClubMusic:Clone()
music.Parent = plr.PlayerGui
music:Play()
end
end
end)
this works, but when I try to leave the area, the music continues
|
|
LaakariJoin Date: 2014-08-07 Post Count: 17362 |
These scripts are also in two different parts with a good amount of space in between them
|
|
|
the playergui is local, scripts can't see inside it
run a test server and look if you don't believe me |
|
LaakariJoin Date: 2014-08-07 Post Count: 17362 |
What is your solution then, swag?
|
|
ZawieJoin Date: 2010-07-04 Post Count: 6338 |
@Swag that's only true for filteringenabled my dyde |
|
|
do it inside the localscript of your gui.
touch event in the localscript that checks for your part's name and deletes itself if the player's character touched that part |
|
LaakariJoin Date: 2014-08-07 Post Count: 17362 |
I do not have filtering enabled on.
I just need a sound to play when I enter a building, and stop when I leave. Anyone got ideas?
|
|
|