A Roblox Community
Would you like to react to this message? Create an account in a few clicks or log in to continue.

A Roblox Community

A community of Robloxians who want to learn to script and build on Roblox Studio.
 
HomeLatest imagesRegisterLog in
If you're a experienced coder make some tutorials! It would really help the site grow.
Make sure you read the rules(Which can be found by clicking here)
If you're a beginner at coding, try some tutorials.
We have many Moderators/Admins watching this site. Contact them with Questions.
Let us know what your favorite sport is. By clicking here to vote (Click here)
This site is becoming inactive. Lets make it active.
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Top posters
blueymaddog
how to make a Reset GUI Vote_lcaphow to make a Reset GUI Voting_barhow to make a Reset GUI Vote_rcap 
naknak
how to make a Reset GUI Vote_lcaphow to make a Reset GUI Voting_barhow to make a Reset GUI Vote_rcap 
Supernapalm
how to make a Reset GUI Vote_lcaphow to make a Reset GUI Voting_barhow to make a Reset GUI Vote_rcap 
m27frogy
how to make a Reset GUI Vote_lcaphow to make a Reset GUI Voting_barhow to make a Reset GUI Vote_rcap 
slayer9365
how to make a Reset GUI Vote_lcaphow to make a Reset GUI Voting_barhow to make a Reset GUI Vote_rcap 
myrco919
how to make a Reset GUI Vote_lcaphow to make a Reset GUI Voting_barhow to make a Reset GUI Vote_rcap 
branefreez
how to make a Reset GUI Vote_lcaphow to make a Reset GUI Voting_barhow to make a Reset GUI Vote_rcap 
ninga95
how to make a Reset GUI Vote_lcaphow to make a Reset GUI Voting_barhow to make a Reset GUI Vote_rcap 
CloneTrooper787
how to make a Reset GUI Vote_lcaphow to make a Reset GUI Voting_barhow to make a Reset GUI Vote_rcap 
raboy117
how to make a Reset GUI Vote_lcaphow to make a Reset GUI Voting_barhow to make a Reset GUI Vote_rcap 
Top posting users this month
No user
Latest topics
» Where to go from here.
how to make a Reset GUI EmptySeptember 14th 2020, 1:20 pm by MrNicNac

» Send me an Email
how to make a Reset GUI EmptySeptember 14th 2020, 1:16 pm by MrNicNac

» [v1.6.0.0] Lua Script Obfuscator [No Bytecode]
how to make a Reset GUI EmptyJuly 6th 2015, 7:38 pm by m27frogy

» New Site Possibly
how to make a Reset GUI EmptyJuly 6th 2015, 4:16 pm by m27frogy

» Ambassador!
how to make a Reset GUI EmptyApril 15th 2015, 11:40 pm by naknak

» Boop - Tag
how to make a Reset GUI EmptyApril 13th 2015, 9:46 pm by naknak

» Vip Class Script
how to make a Reset GUI EmptyApril 13th 2015, 4:54 pm by naknak

» Who's active?!
how to make a Reset GUI EmptyApril 13th 2015, 4:52 pm by naknak

» Genesis Point
how to make a Reset GUI EmptyJuly 17th 2014, 7:04 pm by branefreez

» Reward System
how to make a Reset GUI EmptyJuly 17th 2014, 5:41 am by m27frogy

» Script Request
how to make a Reset GUI EmptyJuly 10th 2014, 11:43 am by naknak

» local scripts?
how to make a Reset GUI EmptyJuly 10th 2014, 11:39 am by naknak

» Project: Reconstruction [Died]
how to make a Reset GUI EmptyJuly 10th 2014, 11:36 am by naknak

» Hi. I am new here
how to make a Reset GUI EmptyApril 26th 2014, 4:01 pm by altshiftkey

» What's your favorite sport?
how to make a Reset GUI EmptyJanuary 1st 2014, 2:13 pm by m27frogy

» FlashLight Script
how to make a Reset GUI EmptyJanuary 1st 2014, 2:11 pm by m27frogy

» Gun Making! [READ DESC]
how to make a Reset GUI EmptyJanuary 1st 2014, 2:10 pm by m27frogy

» Hi, I am new here!
how to make a Reset GUI EmptyNovember 26th 2013, 3:33 pm by Keanu73

» Improve Coding
how to make a Reset GUI EmptyOctober 26th 2013, 1:12 pm by pook03

» Simple Button
how to make a Reset GUI EmptySeptember 1st 2013, 6:19 pm by branefreez


 

 how to make a Reset GUI

Go down 
5 posters
AuthorMessage
andyrocks
Novice Scripter
Novice Scripter
avatar


Posts : 3
Join date : 2010-08-01

how to make a Reset GUI Empty
PostSubject: how to make a Reset GUI   how to make a Reset GUI EmptyAugust 1st 2010, 5:03 pm

ok. to make a Reset GUI, this is all you have to do.
Insert>Object>Screen GUI
in that,
Insert>Object>TextButton
in that,
Insert>Object>Script
the Text Button's Properties should be like this.

Backgound Color: 150; 150; 150
Background transparency 0.3
Text color: 51; 51; 51
Text: Reset
Postion: {0, 500}, {0, -20}
Size:{0, 99}, {0, 20}

then the Script should be this.

function onButtonClicked()
script.Parent.Parent.Parent.Parent.Character.Humanoid.Health = 0
end

script.Parent.MouseButton1Click:connect(onButtonClicked)

That is a Reset GUI.
Back to top Go down
andyrocks
Novice Scripter
Novice Scripter
avatar


Posts : 3
Join date : 2010-08-01

how to make a Reset GUI Empty
PostSubject: Long   how to make a Reset GUI EmptyAugust 1st 2010, 5:04 pm

It took me a LONG time to get that script correct because im not the best at scripting yet.
Back to top Go down
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

how to make a Reset GUI Empty
PostSubject: Re: how to make a Reset GUI   how to make a Reset GUI EmptyAugust 1st 2010, 5:07 pm

You get a reputation point :D
Back to top Go down
slayer9365
Expert Scripter
Expert Scripter
slayer9365


Posts : 233
Join date : 2010-07-31
Age : 29

how to make a Reset GUI Empty
PostSubject: Re: how to make a Reset GUI   how to make a Reset GUI EmptyAugust 2nd 2010, 5:13 pm

You know you could easily make this easier with a simple LocalScript. You could do game.Players.LocalPlayer.Character.Humanoid.Health = 0
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

how to make a Reset GUI Empty
PostSubject: Re: how to make a Reset GUI   how to make a Reset GUI EmptyDecember 18th 2010, 10:07 am

but what if the MaxHealth was 0. use script.Parent.Parent.Parent.Parent.Character:BreakJoints()

@above, you have to use a local script to access the LocalPlayer
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

how to make a Reset GUI Empty
PostSubject: Re: how to make a Reset GUI   how to make a Reset GUI EmptyDecember 18th 2010, 10:11 am

sorry, I only read the last line @2 above. I'm tired so I can't think properly.
Back to top Go down
lukenuke75
Novice Scripter
Novice Scripter
lukenuke75


Posts : 38
Join date : 2011-03-07
Age : 27

how to make a Reset GUI Empty
PostSubject: Re: how to make a Reset GUI   how to make a Reset GUI EmptyMarch 8th 2011, 5:28 pm

I use local player for GUI resets; it always breaks when i actually go and play it in multiplayer. In RStudio it works like a charm, What could be wrong with it?
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

how to make a Reset GUI Empty
PostSubject: Re: how to make a Reset GUI   how to make a Reset GUI EmptyNovember 20th 2011, 6:09 am

you should post your problem in the help forum.
btw: have you tried debugging it online mode test?
Back to top Go down
Sponsored content





how to make a Reset GUI Empty
PostSubject: Re: how to make a Reset GUI   how to make a Reset GUI Empty

Back to top Go down
 
how to make a Reset GUI
Back to top 
Page 1 of 1
 Similar topics
-
» How do you give other people reset tools?
» How do I make models?
» How to make a SIMPLE command script
» How To Make a Custom Signature
» How to make a Message script

Permissions in this forum:You cannot reply to topics in this forum
A Roblox Community :: Tutorials and Resources :: Intermediate-
Jump to: