I am having issues with Remote Events?
So i want a cube of light to be placed wherever the player has his/her mouse when they press R. I'm not sure what the issue is with the code I made.
Local Script:
01 | local Players = game:GetService( "Players" ) |
02 | local LocalPlayer = Players.LocalPlayer |
03 | local Mouse = LocalPlayer:GetMouse() |
04 | local RepStorage = game:GetService( "ReplicatedStorage" ) |
05 | local DeletePart = RepStorage.DeletePart |
06 | local UIS = game:GetService( "UserInputService" ) |
07 | local part = game.Workspace.deletepart |
09 | UIS.InputBegan:Connect( function (input) |
10 | local Hitposition = Mouse.Hit |
11 | if input.KeyCode = = Enum.KeyCode.R then |
13 | if Hitposition = = nil then |
14 | DeletePart:FireServer(Hitposition) |
Server Script:
01 | local RepStorage = game:GetService( "ReplicatedStorage" ) |
02 | local DeletePart = RepStorage.DeletePart |
03 | local Cube = game.ServerStorage.LightCube:Clone() |
06 | DeletePart.OnServerEvent:Connect( function (Player, Position) |
07 | if Cooldown [ Player.name ] then return warn(Player.Name.. " is on cooldown" ) end |
08 | Cooldown [ Player.Name ] = os.time |
09 | Cube.Name = string.format( "%s part" , tostring (Player.name)) |
10 | Cube.Parent = game.Workspace |
11 | Cube.CFrame = Position |
14 | Cooldown [ Player.Name ] = nil |