local scripts not functioning as is and i dont know whats wrong?
Hello, so basically what im trying to do is make a script where you press a button then it makes a person invisible or visible and based on their stats they are invisible or visible. so if the client is invisible then if they have less stats then another client they are semi invisible to the other client but if the client has more stats then the other client then they are completely invisible to the other client.
i have a server script and 2 local scripts that do this whole function process. 1 local scripts in the character which listen for the key pressed and fire a function to all clients.
local script #1:
01 | local player = game:GetService( "Players" ).LocalPlayer |
02 | local mouse = player:GetMouse() |
03 | local char = player.Character |
06 | game:GetService( "UserInputService" ).InputBegan:Connect( function (input, gameProcessedEvent, event) |
07 | if gameProcessedEvent then return end |
08 | if input.KeyCode = = Enum.KeyCode.V and db then |
11 | game.ReplicatedStorage.Events.INVISIBLITYYY:FireServer() |
12 | if char.Head.face.Transparency = = 1 then |
14 | for _, Part in pairs (char:GetDescendants()) do |
15 | if Part:IsA( "BasePart" ) or Part:IsA( "MeshPart" ) then |
17 | char.Head.face.Transparency = 0 |
18 | char.HumanoidRootPart.Transparency = 1 |
19 | local vision = "visible" |
20 | script.Parent.Vision:FireServer(vision) |
23 | elseif char.Head.face.Transparency = = 0 then |
25 | for _, Part in pairs (char:GetDescendants()) do |
26 | if Part:IsA( "BasePart" ) or Part:IsA( "MeshPart" ) then |
27 | Part.Transparency = 0.7 |
28 | char.Head.face.Transparency = 0.7 |
29 | local vision = "invisible" |
30 | script.Parent.Vision:FireServer(vision) |
this script listens for the key and makes the character invisible locally and fires a event with a variable called "vision" witch can equal either "invisible" or "visible".
next is
script #2:
1 | local character = script.Parent |
2 | local Players = game:GetService( "Players" ) |
3 | local player = Players:GetPlayerFromCharacter(character) |
6 | script.Parent.Vision.OnServerEvent:Connect( function (plr, vision) |
7 | game.ReplicatedStorage.Events.INVISIBLITYYY:FireAllClients(plr, vision) |
this simply gets the event and fires it then to all other clients with the plr and the vision variable.
local script #3:
01 | game.ReplicatedStorage.Events.INVISIBLITYYY.OnClientEvent:Connect( function (plr, vision) |
02 | local char = plr.Character |
04 | local stats = plr.stats.Phychic.Value |
05 | local MyPLR = game.Players.LocalPlayer |
06 | local MyStats = plr.stats.Phychic.Value |
08 | if vision = = "visible" then |
09 | for _, Part in pairs (char:GetDescendants()) do |
10 | if Part:IsA( "BasePart" ) or Part:IsA( "MeshPart" ) then |
12 | char.Head.face.Transparency = 0 |
13 | char.HumanoidRootPart.Transparency = 1 |
16 | elseif vision = = "invisible" then |
17 | if MyStats > stats then |
18 | for _, Part in pairs (char:GetDescendants()) do |
19 | if Part:IsA( "BasePart" ) or Part:IsA( "MeshPart" ) then |
20 | Part.Transparency = 0.6 |
21 | char.Head.face.Transparency = 0.6 |
22 | char.HumanoidRootPart.Transparency = 1 |
25 | elseif MyStats < stats then |
26 | for _, Part in pairs (char:GetDescendants()) do |
27 | if Part:IsA( "BasePart" ) or Part:IsA( "MeshPart" ) then |
29 | char.Head.face.Transparency = 1 |
this local script is inside of playergui and it listens for the fireallclient and then it gets its player and the player that fired the function. it gets the clients stats and the player who pressed the keys stats it then compares and makes them either invisible or visible by checking stats and the variable named "vision".
hopefully someone can find the problem i am making or maybe my script has no problems and it isnt placed in the right area. well thank you in advanced!