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

local scripts not functioning as is and i dont know whats wrong?

Asked by 5 years ago

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:

01local player = game:GetService("Players").LocalPlayer
02local mouse = player:GetMouse()
03local char = player.Character
04local db = true
05 
06game:GetService("UserInputService").InputBegan:Connect(function(input, gameProcessedEvent, event)
07    if gameProcessedEvent then return end
08    if input.KeyCode == Enum.KeyCode.V and db then
09        db = false
10        print("Working")
11        game.ReplicatedStorage.Events.INVISIBLITYYY:FireServer()
12        if char.Head.face.Transparency == 1  then
13            print("invisible")
14            for _, Part in pairs(char:GetDescendants())do
15                if Part:IsA("BasePart") or Part:IsA("MeshPart") then
View all 37 lines...

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:

1local character = script.Parent
2local Players = game:GetService("Players")
3local player = Players:GetPlayerFromCharacter(character)
4 
5 
6script.Parent.Vision.OnServerEvent:Connect(function(plr, vision)
7    game.ReplicatedStorage.Events.INVISIBLITYYY:FireAllClients(plr, vision)
8end)

this simply gets the event and fires it then to all other clients with the plr and the vision variable.

local script #3:

01game.ReplicatedStorage.Events.INVISIBLITYYY.OnClientEvent:Connect(function(plr, vision)
02    local char = plr.Character
03    print(char.Name)
04    local stats = plr.stats.Phychic.Value
05    local MyPLR = game.Players.LocalPlayer
06    local MyStats = plr.stats.Phychic.Value
07    print(vision)
08    if vision == "visible" then
09        for _, Part in pairs(char:GetDescendants())do
10            if Part:IsA("BasePart") or Part:IsA("MeshPart") then
11                Part.Transparency = 0
12                char.Head.face.Transparency = 0
13                char.HumanoidRootPart.Transparency = 1
14            end
15        end
View all 34 lines...

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!

2 answers

Log in to vote
0
Answered by 5 years ago

Maybe try putting the scripts in StarterGui? That sometimes works for me.

0
allready tried but it diddnt work. ahsan666666666666 264 — 5y
0
Well other than that I see no other problems. May I suggest you space out your code and go through every line of code you have to try and spot the mistake. PrismaticFruits 842 — 5y
0
OK ahsan666666666666 264 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

Try doing a for I, player in pairs(game.Players:GetPlayers()) do then looping through all the players and checking that all on the server? May work.

0
What is the error exactly? NickIsANuke 217 — 5y
0
the script just isnt working properly and isnt giving any errors ahsan666666666666 264 — 5y
0
Hmmmmmmmmmmm NickIsANuke 217 — 5y

Answer this question