01 | shared.TwitterStatus = nil -- this is a shared Variable that can be accessed from any script in the game, It is currenty set to nil until we use it to prevent bugs |
02 |
03 | local gear = game.ReplicatedStorage:WaitForChild( "GravityCoil" ) |
04 | game.Players.PlayerAdded:connect( function (plr) |
05 | shared.TwitterStatus = false -- now that we are using it, it is no longer nil and has a value. |
06 | --It is also setting the variable once when the player is added to prevent it from being added again when player respawns |
07 | script.Parent.MouseButton 1 Click:connect( function () |
08 | if script.Parent.Parent.Input.Text = = 'Alpha!' and shared.TwitterStatus = = false then |
09 | shared.TwitterStatus = true -- now that it is true, it cannot be ran in this condition again. But as i said before, it can be edited from any script, so u can change it later |
10 | gear:Clone().Parent = game.Players.LocalPlayer.Backpack |
11 | script.Parent.Parent.Input.Text = '' |
12 | script.Parent.Text = 'Success!' |
13 | wait( 1 ) |
14 | script.Parent.Text = 'Submit' |
15 | else |
Bleh. Putting something in Backpack is temporary, the item gets removed when you die/leave the game.
But if you want to do it manually:
1 | local debounce = false |
2 |
3 | if debounce = = false and script.Parent.Parent.Input.Text = = 'Alpha!' then |
4 | debounce = true |
5 | -- code |
6 | end |
EDIT:
This is a script inside a twitter code gui. Hierarchy:
Script:
01 | local item = game.ReplicatedStorage:WaitForChild( "ItemName" ) |
02 | local debounce = false |
03 | local button = script.Parent.Button |
04 | local input = script.Parent.Input |
05 | local code = "code" |
06 | local starterText = "Enter Twitter code here" |
07 |
08 | button.MouseButton 1 Down:connect( function () |
09 | if debounce = = false and input.Text = = code then |
10 | debounce = true |
11 | local clone = item:Clone() |
12 | clone.Parent = game.Players.LocalPlayer.Backpack |
13 | elseif input.Text ~ = code then |
14 | input.Text = "Invalid Code" |
15 | elseif debounce = = true then |
16 | input.Text = "Already entered code for this life" |
17 | end |
18 | end ) |