View difference between Paste ID: QyJy2Xru and P1QLdxZw
SHOW: | | - or go back to the newest paste.
1-
-- Hello, You Cannot find Thomas Train ROBLOX Script on PasteBin? Because, i'll remake this!
1+
2
local Plr = game.Players.LocalPlayer
3
local PChar = Plr.Character
4
5
wait(0.5)
6
7
local CharPart = Instance.new("Part", PChar)
8
CharPart.Size = Vector3.new(9.067, 12.97, 29.795)
9
CharPart.Rotation = Vector3.new(-180, 0, -180)
10
CharPart.Name = "Danky"
11
CharPart.CanCollide = true
12
local CharMesh = Instance.new("SpecialMesh", CharPart)
13
CharMesh.MeshId = "rbxassetid://456959405"
14-
CharMesh.MeshId = "rbxassetid://431017802"
14+
CharMesh.TextureId = "rbxassetid://42195336"
15-
CharMesh.TextureId = "rbxassetid://431017809"
15+
16
local CharWeld = Instance.new("Weld", PChar.Torso)
17
CharWeld.Part0 = CharPart
18
CharWeld.Part1 = PChar.Torso
19
CharWeld.C0 = CFrame.Angles(0, math.pi, 0)
20
CharWeld.Name = "DankyWeld"
21
local CharLight = Instance.new("SpotLight", CharPart)
22
CharLight.Face = "Back"
23
CharLight.Range = 60
24
25
local Humanoid = PChar:WaitForChild("Humanoid")
26
27
Humanoid.WalkSpeed = 145
28-
Humanoid.WalkSpeed = 100
28+
29
local Music = Instance.new("Sound", CharPart)
30
Music.SoundId = "rbxassetid://131530786"
31-
Music.SoundId = "rbxassetid://190141163"
31+
32
Music.Looped = true
33
Music:Play()
34
35
CharPart.Touched:connect(function(ChildTouched)
36
	if ChildTouched.Parent:FindFirstChild("Humanoid") == nil then else
37
		if ChildTouched.Parent.Name == Plr.Name then return end
38
		local BomSFX = Instance.new("Sound", game.Workspace)
39
		BomSFX.SoundId = "rbxassetid://141679994"
40
		BomSFX.Volume = 1
41
		BomSFX:Play()
42
		ChildTouched.Parent:FindFirstChild("Humanoid").Health = 0
43
	end
44
end)
45
46
wait(0.5)