why won t this script work on roblox player?
01 | script.Parent.MouseButton 1 Click:connect( function () |
03 | local event = Instance.new( "RemoteEvent" ) |
04 | event.Parent = game.Workspace |
05 | event.Name = "MyServerEvent" |
06 | event.OnServerEvent:connect( function () |
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 |
14 | if human:FindFirstChild(model):FindFirstChild(car) ~ = nil then |
16 | local body = human:FindFirstChild(model):FindFirstChild(car):GetChildren() |
17 | for i,v in pairs (body) do |
18 | if v.Name = = "Seat" then |
20 | script.Parent.Parent.Open.Visible = true |
21 | script.Parent.Visible = false |
27 | game.Workspace.MyServerEvent:FireServer() |
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