Hello, do I want to access PlayerScripts through ServerScript? thank you so much.
Could you be more specific? Based on what you said here I don’t know how to answer your question, mostly because depending on what you want to do this may be impossible.
i want to access a value inside the playerscript
i have try this :
local Players = game.Players
local Value = Players.PLAYERNAME.PlayerScript.Value
It’s kinda like that (am typed without using roblox studio but the structure I used before is like that)
I’m not sure if you can access a value inside a script that way, specially from a serverscript.
Something I do to share values between scripts:
I Set an Attribute to something in the localscript.
Then have another script that detects attribute changes on that object and send it to the server trough a remoteevent.
Then i have another script on the server that recieves the attribute and the value and set’s ir on the server side
Then i can use the value on the server with Object:GetAttribute(“Attribute”)
But this is dangerous, as anyone could send fake values and hack your game, so you’ll need to make security checks