Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

A twitter GUI works even after a player resets, and doesnt even WORK right now?

Asked by
Vid_eo 126
9 years ago
01shared.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 
03local 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.MouseButton1Click: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
View all 23 lines...
1
Clone into the players starterpack FiredDusk 1466 — 9y

1 answer

Log in to vote
0
Answered by 9 years ago

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:

1local debounce = false
2 
3if debounce == false and script.Parent.Parent.Input.Text == 'Alpha!' then
4    debounce = true
5    -- code
6end

EDIT:

This is a script inside a twitter code gui. Hierarchy:

  • StarterGui
    • TwitterGui
      • TextButton (name 'button')
      • TextBox (named 'input')
      • LocalScript

Script:

01local item = game.ReplicatedStorage:WaitForChild("ItemName")
02local debounce  = false
03local button = script.Parent.Button
04local input = script.Parent.Input
05local code = "code"
06local starterText = "Enter Twitter code here"
07 
08button.MouseButton1Down: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
18end)
0
Yes, but once they die, they could re - enter the code. Vid_eo 126 — 9y
0
Yes, this does that. TheDeadlyPanther 2460 — 9y
Ad

Answer this question