|
How much would it cost to make a gui that when you press a button it makes a brick transparent or nontransparent but also FilteringEnabled?
R$1,924 |
|
|
its like 5 extra lines of code
#code print("oh no an errorz!") |
|
|
I don't know how to do anything FE but enable it .-.
R$1,938 |
|
|
http://wiki.roblox.com/index.php?title=Remote_Events_and_Functions
➟ When life gives you lemons, make apple-juice to assert dominance. |
|
|
To me none of that made sense ;-;
R$1,945 |
|
|
It's basically like a clickdetector is activated with .MouseClick:connect()
instead, it's your own >>custom<< event
➟ When life gives you lemons, make apple-juice to assert dominance. |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
You've created this already? Just want it converted to FE? |
|
|
when the gui is clicked fire an event with a script connected to an it being fired.
take a look at this
https://www.roblox.com/games/914425545/guibuttonexamplefe
#code print("oh no an errorz!") |
|
|
the example is unsecure and likely unefficent btw
#code print("oh no an errorz!") |
|
|
Yeah, would you be willing to do it?
R$1,945 |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
Sure, why not... |
|
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
Oh, you're wanting to make the player invisible? |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
I thought you just meant like a part on the workspace, ################# I was already writing some code to do that. xD So is this an example or can I just modify this, and that would work? |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
Why does it filter lol with all those hashtags... |
|
|
Yeah, sorry about the wait I was throwing the example together.
R$2,000 |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
You do realize this is a bigger job than I anticipated right?
"make a gui that when you press a button it makes a brick transparent or nontransparent but also FilteringEnabled?"
That would take like 2 minutes to code... But, I'll see what I can do... |
|
|
xd sorry 'bout that, thought it would be easier than this
R$2,000 |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
Without me having to look through the code to find out... Does the screen gui "Actions" get cloned to the player? I'm guessing so. |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
Never mind... I need to get some caffeine... I just over looked it. |
|
|
|
local block=script.Parent
local re=game.ReplicatedStorage.RemoteEvent
re.OnServerEvent:Connect(function(player,int)
block.Transparency=int
end)
--client sided
local re=game.ReplicatedStorage.RemoteEvent
local gui=script.Parent
local done=false
gui.MouseButton1Down:Connect(function()
if not done then
done=true
re:FireServer(1)
elseif done then
done=false
re:FireServer(0)
end
end) |
|
|
Never mind about this I'll find way to do it myself, thank you for trying to help me.
R$2,000 |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
Don't worry about I'm already half done... |
|
nullfeelsJoin Date: 2017-03-31 Post Count: 1215 |
I think I'm basically done, but will be a bit, I've a phone call... :/ |
|