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

why won t this script work on roblox player?

Asked by
Benqazx 108
9 years ago
01script.Parent.MouseButton1Click:connect(function()
02-- Inside Server Script
03local event = Instance.new("RemoteEvent") -- creates the event object
04event.Parent = game.Workspace -- puts the event into the Workspace
05event.Name = "MyServerEvent" -- giving a name to the event so we can fire it specifically elsewhere
06event.OnServerEvent:connect(function() -- define the function that will be called when the event is fired
07    local player = script.Parent.Parent.Parent.Parent
08    local char = player.Character
09    local human = char:FindFirstChild("Humanoid")
10    local model = script.Parent.Parent.Model.Value
11    local car = script.Parent.Parent.Car.Value
12    if human:FindFirstChild(model)~= nil then
13        print("Model Found!")
14        if human:FindFirstChild(model):FindFirstChild(car) ~= nil then
15            print("Car Found!")
View all 28 lines...

this script works on studio but not on the roblox player. the error below pops up. why? please help 23:29:39.113 - OnServerEvent can only be used on the server 23:29:39.114 - Script 'Players.Player2.PlayerGui.VehicleGui.Lock.LocalScript', Line 6 23:29:39.114 - Stack End

2 answers

Log in to vote
1
Answered by
Pyrondon 2089 Game Jam Winner Moderation Voter Community Moderator
9 years ago

Lines 1-6 should be in a server script, not local.

The source explains this.

Ad
Log in to vote
1
Answered by 9 years ago

You can't handle the server side part of a RemoteEvent; you have to place to OnServerEvent Code in a Server Script.

Answer this question