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

How to Throw object with middle mouse click?

Asked by
A_thruZ 29
5 years ago

I am making a game in which you have to escape each level by picking up, throwing and dropping parts.

My middle click (throwing) function isn't working. The part isn't moving at all, and I'm not sure if the click is registering. Am I using the input wrong? Please help.

Oh, and here's the code.

01local player = game.Players.LocalPlayer
02local mouse = player:GetMouse()
03local uis = game:GetService("UserInputService")
04 
05local pack = player:WaitForChild("Backpack")
06local character = player.Character
07 
08mouse.Icon = "rbxassetid://3248591495"
09 
10mouse.Button1Down:Connect(function()
11    if mouse.Target ~= nil then
12        if mouse.Target.Locked == false then
13            mouse.Target.Name = "Handle"
14            local tool = Instance.new("Tool", pack)
15            tool.CanBeDropped = false
View all 61 lines...

1 answer

Log in to vote
-1
Answered by 5 years ago
Edited 5 years ago

IM Not In The Mood To Do It For You, its better if you practice by MAKING the script yourself. But If you use bodygyros or the body velocities or whatever, you can change the numbers so when you clone it into your item, it look liek you threw it. Now, for the middle click thing. I know the command for letters and maybe middle, its one of them. But if you put this code into a localscript into starterpack, you can detect this then activate a remote event that you should put in replicated storage, then in workspace a script that detects when its fired. (local script in starterpack)

1UIS = game:GetService("UserInputService")
2 
3UIS.InputBegan:Connect(function(Input)
4    if Input.KeyCode == Enum.KeyCode.Q then
5        game.ReplicatedStorage.[name of remote event]:FireServer()
6    end
7end)
8--reason its in localscript is so only player that this script is in is detected and no one else on the server can click q or middle button whatever then something happens to you or all players

(workspace normal scipt)

1game.ReplicatedStorage.[Name of Remote Event].OnServerEvent:Connect(function()
2instance.new("bodyVelocity",item) whatever
3end

Your Way Doesnt Work Because I dont know why, GetMouse works but i just, i feel dumb

0
Your code won't even compile. GetMouse is not deprecated or removed. Stop spreading false information. https://developer.roblox.com/api-reference/function/Player/GetMouse pidgey 548 — 5y
0
guess what pidgey? I tried this and it WORKS. Im sorry, you were right CommanderCaubunsia 126 — 5y
Ad

Answer this question