of     1   

Laakari
#183357016Thursday, February 11, 2016 2:24 AM GMT

How can I use guis to interact with stuff in the server if I can't use guis with filtering enabled? Like my house script that works with it off, how can I recode that to make it work? For instance if you click a button: game.Workspace.Part.Transparency = 1 would not work in my script, (It is a normal script)
LilMcManiac
#183357256Thursday, February 11, 2016 2:28 AM GMT

--Localscript in the gui button local plr = game.Players.LocalPlayer repeat wait() until plr.Character local interaction = Instance.new("RemoteEvent", workspace) interaction.Name = "Interaction" script.Parent.MouseButton1Down:connect(function() local part = workspace.Part local trans = 1 interaction:FireServer(part, trans) end) --Reg. Script in workspace local interact = workspace:WaitForChild("Interaction") interact.OnServerEvent:connect(function(part, trans) part.Transparency = trans end)
JarodOfOrbiter
#183357531Thursday, February 11, 2016 2:31 AM GMT

But that wouldn't work. The server wouldn't see "Interaction", and even if it did, there would be one for each player. Besides, the first argument of OnServerEvent is Player.

    of     1