I am trying to add an aura script to the player whenever the player spawns if their datastore value of hasShock is true. I've tried a ton of different things but nothing seems to be working.
01 | local Players = game:GetService( "Players" ) |
02 | local shock |
03 | tool = game.Lighting:findFirstChild( "LightningAura" ) |
04 | local function onCharacterAdded(character) |
05 | if (shock = = true ) then |
06 | print ( "this works" ) |
07 | else |
08 | print ( "still works" ) |
09 | end |
10 |
11 | end |
12 |
13 | Players.PlayerAdded:Connect( function (Player) |
14 | shock = Player.pscripts.hasShock.Value |
15 | if (Player.pscripts.hasShock.Value = = true ) then |
That's the first thing I tried but it always said the player doesn't have shock.
~~~~~~~~~~~~~~~~~
tool = game.Lighting:findFirstChild("LightningAura") -- Put the name of your tool here.
game.Players.PlayerAdded:Connect(function(player) local pscripts = Instance.new("Folder") pscripts.Name = "pscripts" pscripts.Parent = player
01 | local hasShock = Instance.new( "BoolValue" ) |
02 | --Change below for name |
03 | hasShock.Name = "hasShock" |
04 | -- Default value |
05 | hasShock.Value = false |
06 | hasShock.Parent = pscripts |
07 |
08 | --Again name and default |
09 | local hasSSJ = Instance.new( "BoolValue" ) |
10 | hasSSJ.Name = "hasSSJ" |
11 | hasSSJ.Value = false |
12 | hasSSJ.Parent = pscripts |
13 |
14 | player.CharacterAdded:Connect( function (Character) |
15 | Character:WaitForChild( 'Humanoid' ).Died:Connect( function () |
end) ~~~~~~~~~~~~~~~~~
This is the second thing I tried. It got to the got this far print statement every time but it didn't get put in the players inventory. Is there another way to do this? Or is there a way to fix one of the other ones.
Now, Im no Scripting Expert, but I think your problem is happening is because you are giving the tool to the player when they are dead. Perhaps try creating a value inside the player, then activating it whenever the Player dies, waiting until the player respawns, and checking if the player has the value set to true. If the value is set to true, clone the tool into the player's avatar, like this:
01 | player.CharacterAdded:Connect( function (Character) |
02 | local GiveTool = Instance.new( "BoolValue" ) |
03 | GiveTool.Name = "givetool" |
04 | GiveTool.Value = false |
05 | GiveTool.Parent = player |
06 | Character:WaitForChild( 'Humanoid' ).Died:Connect( function () |
07 | print ( "dead" ) |
08 | if (hasShock.Value = = true ) then |
09 | print ( "Got this far" ) |
10 | player.givetool.Value = true |
11 | end |
12 |
13 | end ) |
14 | if player.givetool.Value = = true then |
15 | local a = tool:clone() |
16 | a.Parent = player.Character |
17 | end |
18 | end ) |
Now, like I mentioned before, Im not Scripting Expert, so this may or may not work for you.
NOTE: This is for lines 14 - 25