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

How to send data from one server script to another without remote events?

Asked by 3 years ago

I'm creating is gun, and each bullet has its own individual script for hit detection and bullet physics and stuff like that. However, the problem is I'm trying to pass the data from the gun the player is holding to the bullet, that way I can tell the bullet to ignore the player when it comes to hitting detection. The problem is I don't want to use remote events, because I don't want a million remote events triggering if multiple people are firing the gun at once, cause that would create a lot of lag. And I don't know any other way to send information between scripts without remote events.

0
they use remote events, also why arent you handling this client side Feroxidus 83 — 3y
0
1: im trying to keep as little on there as possible to avoid exploiters ; 2 - The script im trying to send information to is inside the bullet bullet, so I need to use a server script generalYURASKO 144 — 3y
0
BindableEvents are your best bet, there is also _G. Ziffixture 6913 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago
Edited 3 years ago

You could use ObjectValues for this, example: Main Tool Script:

local BulletScript = bullet:FindFirstChild("Script")
local ObjValue = BulletScript:FindFirstChild("Player")
ObjValue.Value = Player

Bullet Script:

local PlrValue = script:FindFirstChild("Player")
local Player = PlrValue.Value

function BulletHit(Object)
if not Object:IsDescendantOf(Player) then
print("Object is not the firing player's character, check if it's another player and damage")
end
end

Of course, this isn't a full script, just enough to give you an idea of how you can use ObjectValues in your code, Hope this helps Also, you could use ModuleScripts for this if the above doesn't help

0
Lord_WIthAlt, so I tried this, and in my mind it makes sense, but for some reason, its acting very strange. I've tried it, and for me it appears to only work when I do a regular if statement, not an "if not" statement. When I use an if statement the bullet does not kill me even though it by all accounts should, when I use an "if not" statement then it does kill me. :Edit: Actually neither of them generalYURASKO 144 — 3y
0
Wait, thats my fault I was doing a double negative with the if statements, it works fine, thanks for the help. generalYURASKO 144 — 3y
0
Sorry for the late reply, no problem, glad I could help Lord_WitherAlt 206 — 3y
Ad

Answer this question