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

I am having issues with Remote Events?

Asked by 4 years ago

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:

01local Players = game:GetService("Players")
02local LocalPlayer = Players.LocalPlayer
03local Mouse = LocalPlayer:GetMouse()
04local RepStorage = game:GetService("ReplicatedStorage")
05local DeletePart = RepStorage.DeletePart
06local UIS = game:GetService("UserInputService")
07local part = game.Workspace.deletepart
08 
09UIS.InputBegan:Connect(function(input)
10    local Hitposition = Mouse.Hit
11    if input.KeyCode == Enum.KeyCode.R then
12        print("R Pressed")
13        if Hitposition == nil then
14            DeletePart:FireServer(Hitposition)
15        end
16    end
17end)

Server Script:

01local RepStorage = game:GetService("ReplicatedStorage")
02local DeletePart = RepStorage.DeletePart
03local Cube = game.ServerStorage.LightCube:Clone()
04local Cooldown = {}
05 
06DeletePart.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
12 
13    delay(2,function() -- 2 = cooldown time
14        Cooldown[Player.Name] = nil
15    end)
16end)
0
Thanks guys for all the help! Kittymuffin323 -10 — 4y
0
How do you know there even is an issue if you don't know what the issue is? SteamG00B 1633 — 4y
0
We can't help you if you don't give us more than "issue" SteamG00B 1633 — 4y
0
Could you be a bit more descriptive? What is not happening the way you want it to? appxritixn 2235 — 4y
0
What exactly is the problem? Is the cube not appearing? If so, I think I know the problem; and that is because you used mouse.Hit and not mouse.Hit.Position. xxIamInevitable 2 — 4y

Answer this question