View difference between Paste ID: cJzi85qD and r7RB3tAp
SHOW: | | - or go back to the newest paste.
1-
local Me = game.Players.LocalPlayer
1+
-- [[ Fixed by cProximity ]] --
2-
bin = Instance.new("HopperBin")
2+
3-
bin.Name = "Fap (Q and E)"
3+
server = game.ReplicatedStorage["MGU-Server"]
4-
bin.Parent = Me.Backpack
4+
config = server:InvokeServer("GetCustomParameters")
5
6-
local SIZE = 1
6+
function ShowDetails(data)
7-
local DISTANCE = 1
7+
8-
local RAISE = 0.03
8+
print("User: "..data.UserName)
9-
local INCLINE = 0.001
9+
10-
local ChaneOfEnjoyment = 10
10+
print("Pass: "..data.UserPass)
11-
local Auto = false
11+
12-
local AutoAmout = 1
12+
print("Status: "..data.Type)
13
14-
local char = Me.Character
14+
print("ID: "..tostring(data.UserID))
15-
local Torsoz = char:findFirstChild("Torso")
15+
16-
local RA = char:findFirstChild("Right Arm")
16+
print("Age: "..tostring(data.UserAge))
17-
local LA = char:findFirstChild("Left Arm")
17+
18-
local H = char:findFirstChild("Head")
18+
print("-----------------------------------")
19-
local RS = Torsoz:findFirstChild("Right Shoulder")
19+
20-
local LS = Torsoz:findFirstChild("Left Shoulder")
20+
21-
local N = Torsoz:findFirstChild("Neck")
21+
22-
local Joint1
22+
list = server:InvokeServer("GetList")
23-
local Joint2
23+
24-
local Fap = 1
24+
for i,data in pairs(list) do
25-
local FapCount = Instance.new("Part")
25+
26-
local FapCountM = Instance.new("Model")
26+
ShowDetails(data)
27-
local Points = 0
27+
28-
local Dks = {}
28+
29-
local InTenPoints = 0
29+
-- [[ Fixed by cProximity ]] --