Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local par = script.Parent
- local remote = script.Parent.RemoteEvent
- par.Tool1.MouseButton1Click:Connect(function()
- remote:FireServer("Tool1")
- par.Visible = false
- end)
- par.Tool2.MouseButton1Click:Connect(function()
- remote:FireServer("Tool2")
- par.Visible = false
- end)
- par.Tool3.MouseButton1Click:Connect(function()
- remote:FireServer("Tool3")
- par.Visible = false
- end)
Advertisement
Add Comment
Please, Sign In to add comment