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.
01 | local player = game.Players.LocalPlayer |
02 | local mouse = player:GetMouse() |
03 | local uis = game:GetService( "UserInputService" ) |
04 |
05 | local pack = player:WaitForChild( "Backpack" ) |
06 | local character = player.Character |
07 |
08 | mouse.Icon = "rbxassetid://3248591495" |
09 |
10 | mouse.Button 1 Down: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 |
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)
1 | UIS = game:GetService( "UserInputService" ) |
2 |
3 | UIS.InputBegan:Connect( function (Input) |
4 | if Input.KeyCode = = Enum.KeyCode.Q then |
5 | game.ReplicatedStorage. [ name of remote event ] :FireServer() |
6 | end |
7 | end ) |
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)
1 | game.ReplicatedStorage. [ Name of Remote Event ] .OnServerEvent:Connect( function () |
2 | instance.new( "bodyVelocity" ,item) whatever |
3 | end |
Your Way Doesnt Work Because I dont know why, GetMouse works but i just, i feel dumb